New to Telerik UI for ASP.NET Core? Download free 30-day trial
ASP.NET Core Line Charts Custom Visuals
- EXAMPLE
- VIEW SOURCE
-
Change Theme
defaultDefault Theme
- Main
- Main Dark
- Nordic
- Ocean Blue
- Ocean Blue A11Y
- Purple
- Turquoise
Bootstrap Theme- Main
- Bootstrap 3
- Bootstrap 3 Dark
- Main Dark
- Nordic
- Turquoise
- Turquoise Dark
- Urban
- Vintage
Material Theme- Main
- Arctic
- Lime Dark
- Main Dark
- Nova
Classic Theme- Main
- Green
- Green Dark
- Lavender
- Lavender Dark
- Main Dark
- Metro
- Metro Dark
- Moonlight
- Opal
- Opal Dark
- Silver
- Silver Dark
- Uniform
Fluent Theme- Main
Also available for:
CLIENT-SIDE API SERVER-SIDE APIDescription
You can implement custom visualizations for the Telerik UI for ASP.NET Core Line chart markers and highlights by utilizing the Kendo Drawing API. You can do that by setting a JavaScript function name as a string parameter of the Series:
- Markers -> Visual method: .Markers(markers => markers.Visual("markerVisual"))
- Highlight -> Toggle method -> .Highlight(highlight => highlight.Toggle("toggleHandler"));
Various context information is available through the function argument fields. Such are rect (the kendo.geometry.Rect that defines where the visual should be rendered), createVisual (a function that can be used to get the default visual) and options (different options depending on the item type).
You can read more about it in the ASP.NET Core JavaScript API reference.