Hi,
i am trying to get line chart notes style as similar as it can be to 'jqplot.png'.
1. To change shape of each note, i have added .Icon like this:
But the style of the notes remained the same (as in 'pointsKendoChart.png'). Does .Icon control notes shape? Is there any other way to get the shape from 'jqplot.png'?
2. Is it possible to change background color for each label/shape (different points -> different colors, not all points -> same color)?
3. Is it possible to change position of notes to arbitrary position (top, but closer to point)?
I am using Firefox, Kendo UI Beta v2013.2.716 , jQuery v1.9.1.
Best regards,
Antonija
i am trying to get line chart notes style as similar as it can be to 'jqplot.png'.
1. To change shape of each note, i have added .Icon like this:
.Notes(d => d.Position(ChartNotePosition.Top)
.Line(l => l.Width(0))
.Label(m => m.Text(
"value").
Template(
"${value}"
).Position(ChartNoteLabelPosition.Outside))
.Icon(i => i.Border(b=> b.Width(1))
.Visible(
true
)
.Background(
"green"
)
.Type(ChartMarkerShape.Square))
)
2. Is it possible to change background color for each label/shape (different points -> different colors, not all points -> same color)?
3. Is it possible to change position of notes to arbitrary position (top, but closer to point)?
I am using Firefox, Kendo UI Beta v2013.2.716 , jQuery v1.9.1.
Best regards,
Antonija