New to Telerik UI for ASP.NET Core? Download free 30-day trial
Custom Visuals
- EXAMPLE
- VIEW SOURCE
- Edit in Theme Builder
-
Change Theme
DefaultSASSLESS
- Default
- Bootstrap
- Material
- Launch Theme Builder
- visuals.cshtml
- VisualsController.cs
- Forecast.cs
Also available for:
API REFERENCEDescription
You can implement custom visualizations for the 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.