【发布时间】:2021-11-02 09:02:28
【问题描述】:
【问题讨论】:
标签: highcharts gantt-chart highcharts-gantt
【问题讨论】:
标签: highcharts gantt-chart highcharts-gantt
在数据集的开头,您只能插入带有名称属性的点。
Highcharts.ganttChart('container', {
series: [{
name: 'Offices',
data: [{
name: 'Section 1'
}, {
name: 'New offices',
id: 'new_offices',
owner: 'Peter'
}, ...]
}, {
name: 'Product',
data: [{
name: 'Section 2'
}, {
name: 'New product launch',
id: 'new_product',
owner: 'Peter'
}, ...]
}],
...
});
【讨论】: