ChartNoteBuilder
Methods
Line(System.Action)
Sets the line configuration of the note
Parameters
configurator - System.Action<ChartNoteLineBuilder>
The line configuration.
Example
@(Html.Kendo().Chart()
.Name("Chart")
.ValueAxis(a => a.Numeric()
.Note(note => note
.Line(line => line.Width(2))
)
)
)
Label(System.Action)
Sets the label configuration of the note
Parameters
configurator - System.Action<ChartNoteLabelBuilder>
The label configurator.
Example
@(Html.Kendo().Chart()
.Name("Chart")
.ValueAxis(a => a.Numeric()
.Note(note => note
.Label(label => label.Position(ChartNoteLabelPosition.Inside))
)
)
)
Icon(System.Action)
Sets the icon configuration of the note
Parameters
configurator - System.Action<ChartMarkersBuilder>
The icon configuration.
Example
@(Html.Kendo().Chart()
.Name("Chart")
.ValueAxis(a => a.Numeric()
.Note(note => note.Icon(icon => icon.Size(10)))
)
)
Position(System.Nullable)
Sets the note position.
Parameters
position - System.Nullable<ChartNotePosition>
The note position.
Example
@(Html.Kendo().Chart()
.Name("Chart")
.ValueAxis(a => a.Numeric()
.Note(note => note.Position(ChartNotePosition.Left))
)
)
Visual(System.String)
Sets the note visual handler
Parameters
handler - System.String
The JavaScript handler function name.
Example
@(Html.Kendo().Chart()
.Name("Chart")
.ValueAxis(a => a.Numeric()
.Note(note => note.Visual("noteHandler"))
)
)
Visual(System.Func)
Sets the note visual handler
Parameters
handler - System.Func<Object,Object>
The handler
Example
@(Html.Kendo().Chart()
.Name("Chart")
.ValueAxis(a => a.Numeric()
.Note(note => note.Visual(
@<text>
function(e) {
return e.createVisual(); // returns the default visual
}
</text>
)
)
)
)