Highcharts无法读取未定义错误的属性“标记”

时间:2015-12-11 04:46:45

标签: jquery highcharts

我使用的是highcharts 3.0版本。我想添加一个仪表图表。图表正在生成,但我收到错误,因为“无法重新定义属性”标记'未定义。

我没有在图表中获得系列的价值。也建议使用highcharts-more.js。

请回答出错的地方

chart: {
        type: 'gauge',
                renderTo: selector

    },

    title: null,

    pane: {
        center: ['50%', '85%'],
        size: '140%',
        startAngle: -90,
        endAngle: 90,
        background: {
            backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || '#EEE',
            innerRadius: '60%',
            outerRadius: '100%',
            shape: 'arc'
        }
    },

    tooltip: {
        enabled: false
    },

    // the value axis
    yAxis: {

        lineWidth: 0,
        minorTickInterval: null,
        tickPixelInterval: 400,
        tickWidth: 0,
        title: {
            y: -70
        },
        labels: {
            y: 16
        },
            min: 0,
        max: 200,
        title: {
            text: 'Speed'
        }
    },

    plotOptions: {
        series: {
            color: '#FF0000'
    },
    },

         series: [{
        name: 'Speed',
        data: [80],
        dataLabels: {
            format: '<div style="text-align:center"><span style="font-size:25px;color:' +
                 'black' + '">{y}</span><br/>' +
                   '<span style="font-size:12px;color:silver">km/h</span></div>'
        },

    }]
});

0 个答案:

没有答案