2013-10-18 137 views
0

我正在嘗試使用註釋功能將文本添加到折線圖中的繪製點。當我嘗試設置Format()Template()期望值由填充值填充時不顯示。如果我將Text()字段設置爲某個字符串值,則文本將按預期顯示。折線圖功能折線圖MVC包裝不顯示

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); 

回答

0

,如果你與你的替換示例的第一行它應該工作:

series.Line(d => d.Revenue, null, d => d.Revenue)