chart.ts 247 字节
Newer Older
P
Peter Pan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
export const options = {
    legend: {
        data: []
    },
    tooltip: {
        position: ['10%', '100%']
    },
    xAxis: {
        min: 0,
        max: 1
    },
    yAxis: {
        min: 0,
        max: 1,
        splitNumber: 5
    }
};