【问题标题】:start value in y-axis in HighChartHighChart 中 y 轴的起始值
【发布时间】:2013-02-11 13:36:20
【问题描述】:

我最近将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 开始我该如何设置它?谢谢

【问题讨论】:

    标签: javascript jquery charts highcharts


    【解决方案1】:

    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

    【讨论】:

    • 这种方法的问题是,如果您有负值,那么这些行将被截断,如here 所示。问题是如何避免 Highcharts 从所有数据点都为正的负值开始 y 轴。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-10-22
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多