22 lines
367 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|