Highcharts Gantt不会显示所有为空的行

问题描述 投票:0回答:1

我正在尝试创建计划甘特图。我基于资源管理示例创建了这个甘特图。到目前为止,很多好东西!我遇到一些问题,我将在上面单独发帖。

第一个问题是甘特图将最后一行包含数据的行隐藏为空。在示例中,您可以看到在甘特图中可见的最后一行是“ TestPump | TestZone5”的。但是,如果查看数据,则“ TestPump | TestZone6”,“ TestPump | TestZone”和“ TestPumpExtra”的行为空。

我希望显示那些空行。如果四处移动最后一行数据,则不显示之后的内容。

这里是小提琴:https://jsfiddle.net/eddiem9/h9qw5rsj/15/

chart = Highcharts.ganttChart('container', {
    series: series,
    scrollablePlotArea: {
        minHeight: 700
    },
    plotOptions: {
        series: {
            color: '#FF0000'
        }
    },
    scrollbar: {
        enabled: true
    },
    title: {
        text: 'Irrigation Schedule',
        style: {
            color: '#000000',
            fontWeight: 'bold',
            fontSize: '24px'
        }
    },

    tooltip: {
        pointFormat: '<span>Schedule: {point.schedule}</span><br/><span>From: {point.start:%m/%d %H:%M}</span><br/><span>To: {point.end:%m/%d %H:%M}</span>'
    },
    xAxis:
    [{
            labels: {
                format: '{value:%H}' // hour of the day (not working)
            },
            tickInterval: 1000 * 60 * 60, // HOUR
        }, {
            labels: {
                format: '{value:%B %e}' // day name of the week
            },
            tickInterval: 1000 * 60 * 60 * 24, // Day
        }

    ],
    yAxis: {
        type: 'category',
        grid: {
            columns: [{
                    title: {
                        text: 'Pump'
                    },
                    categories: map(series, function (s) {
                        return s.PumpName;
                    })
                }, {
                    title: {
                        text: 'Zone'
                    },
                    categories: map(series, function (s) {
                        return s.IrrigationZoneName;
                    })
                }, {
                    title: {
                        text: 'Status'
                    },
                    categories: map(series, function (s) {
                        return s.CurrentStatus;
                    })
                }
            ]
        }
    }

})

提前感谢!

埃迪

highcharts highcharts-gantt
1个回答
0
投票

使用max属性:

yAxis: {
    max: 33,
    ...
}

实时演示: https://jsfiddle.net/BlackLabel/uty80hfj/

API参考: https://api.highcharts.com/gantt/yAxis.max

© www.soinside.com 2019 - 2024. All rights reserved.