簡體   English   中英

HighChart中y軸的起始值

[英]start value in y-axis in HighChart

我最近將HighChart添加到我的項目中,並希望通過它創建圖表。我編寫了這段代碼來創建一些城市中月份溫度的圖表:

function CreateChart() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                ype: 'line',
                //type: 'column',
                shadow: true,
                zoomType: 'x',
                style: {
                    fontFamily: 'Tahoma'
                }
            },
            title: {
                text: 'Nima Report',
                x: -20 //center
            },
            labels: {
                items: {
                    style: {
                        fontFamily: 'Tahoma'
                    }
                },
                style: {
                    fontFamily: 'Tahoma'
                }
            },
            subtitle: {
                text: 'Source: --',
                x: -20
            },
            xAxis: {                   
                categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
                labels: {
                    rotation: -45,
                    align: 'right',
                    formatter: function () {
                        return '<span style="font-size: 18px;">' + this.value + '</span>';
                    }
                }
            },
            yAxis: {
                title: {
                    text: 'Temp'
                },
                plotLines: [{
                    value: 0,
                    width: 1,
                    color: '#808080'
                }],
                labels: {
                    align: 'right',
                    formatter: function () {
                        return '<span style="font-size: 18px;font-weight: bold">' + this.value + '</span>';
                    }
                }
            },
            tooltip: {
                crosshairs: [true, true],
                enabled: true,
                style: {
                    fontFamily: "Tahoma",
                    textAlign: "right"
                },
                formatter: function () {
                    return '<b>' + this.series.name + '</b><br/>' +
                    this.x + ': ' + this.y + '°C';
                }
            },
            legend: {
                layout: 'vertical',
                align: 'right',
                verticalAlign: 'top',
                x: -10,
                y: 100,
                borderWidth: 0,
                labelFormatter: function () { return '<span style="font-family: Tahoma">' + this.name + '</span>'; }
            },
            series: [{
                name: 'Tokyo',
                data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
            }, {
                name: 'New York',
                data: [0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
            }, {
                name: 'Berlin',
                data: [0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
            }, {
                name: 'London',
                data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
            }]
        });
    }

問題是,盡管我沒有任何負值,但圖表創建的Y-Axis起始值為-25我希望它Zero如何設置? 謝謝

min添加到y軸:

yAxis: {
     title: {
         text: 'Temp'
     },
     plotLines: [{
         value: 0,
         width: 1,
         color: '#808080'
     }],
     labels: {
        align: 'right',
        formatter: function () {
            return '<span style="font-size: 18px;font-weight: bold">' + this.value + '</span>';
        }
     },
      min:0,
},

DEMO

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM