Highchart - 在** point.update()期间,Gauge图表始终指向带有十进制值的10

时间:2015-03-13 13:21:16

标签: javascript jquery charts highcharts

我想将值更新为guage图表 point.update([我的小数值])的小数。但它总是指向10.它仅在我提供整数值时有效。

继承yAxis的定义 -

 yAxis: [{

                    lineWidth: 0,
                    min: 0,
                    max: 10,
                    tickInterval :100,
                    tickPosition: 'outside',
                    minorTickPosition: 'outside',
                    tickLength: 15,
                    minorTickLength: 0,
                    labels: {
                        distance: 25
                    },
                    offset: 5,
                    endOnTick: false,
                    title: {
                        y: -70
                    },

                    plotOptions: {
                        solidgauge: {
                            dataLabels: {
                                y: 5,
                                borderWidth: 0,
                                useHTML: true
                            }
                        }
                    }
                }],

,系列是

series: [{
                    name: 'Speed',

                    data: [{
                        id: 'hour',
                        y: 10,
                        dial: {
                            backgroundColor: '#DEA12F',
                            radius: '100%',
                            baseLength: '5%',
                            baseWidth: 15,
                            rearLength: '0%'
                        }

                    }],

以下是带有值

的表盘图片

enter image description here

如何使刻度盘指向指定值(0.9)?

0 个答案:

没有答案