Files
VeracrossAnalyzerDemo/src/pages/overall/graph-overall/graph-overall.ts
T
2019-09-23 19:33:27 -04:00

22 lines
367 B
TypeScript

import {Component, Prop, Vue} from 'vue-property-decorator';
import {Course} from '@/components/app/app';
@Component({
})
export default class GraphOverall extends Vue
{
@Prop({required: true}) chart: any;
private settings =
{
series:
{
smooth: false
},
yAxis:
{
min: 70
}
}
}