添加标签到AnyGantt

时间:2017-10-19 13:25:45

标签: label anychart

任何方式在AnyGantt Resource Gantt上为每项任务显示标签? 我需要为每个任务显示标签。当鼠标在它上面时,不是工具提示。

我发现Gantt项目有标签,当我将代码复制到资源Gantt时,它似乎不起作用。任何人都可以帮忙吗?

updateConstraintsIfNeeded()

https://jsfiddle.net/dxnL72am/ 这是从任何图表复制的示例,并添加上面的代码。

1 个答案:

答案 0 :(得分:0)

要在GanttResource的timeLine中显示标签,您应该使用下一个代码:

chart.getTimeline().baseLabels(true);
var labels = chart.getTimeline().labels();
labels.format('{%Name}')   
    .fontColor("red")
    .position('left-center')
    .anchor('right-center')
    .offsetX(5);

a jsFiddle example is here

的完整源代码