折线图MVC包装中的注释功能未显示

时间:2013-10-18 11:02:00

标签: kendo-ui

我尝试使用Notes功能将文本添加到折线图中的绘图点。当我尝试设置Format()Template()期望值由绑定值填充时,不会显示任何内容。如果我将Text()字段设置为某个字符串值,则文本将按预期显示。

 series.Line(d => d.Revenue)
     .Notes(notes => notes.Label(label => label.Position(ChartNoteLabelPosition.Outside).Format("{0:C0}")).Position(ChartNotePosition.Top))
     .Name("Revenue").Color("#00326f")
     .Labels(labels => labels.Position(ChartPointLabelsPosition.Above).Format("{0:C0}")).Visible(true);

1 个答案:

答案 0 :(得分:0)

如果您将样本的第一行替换为:

,它应该有效
series.Line(d => d.Revenue, null, d => d.Revenue)