New to Telerik UI for ASP.NET Core? Download free 30-day trial
Custom Visuals
- EXAMPLE
- VIEW SOURCE
-
EDIT IN TELERIK REPL
-
Change Theme
default
- Main
- Main Dark
- Nordic
- Ocean Blue
- Purple
- Turquoise
- Main
- Main Dark
- Nordic
- Urban
- Vintage
- Main
- Arctic
- Lime Dark
- Main Dark
- Nova
- Main
- Main Dark
- Opal
- Silver
Also available for:
CLIENT-SIDE API SERVER-SIDE APIDescription
You can implement custom visualizations for the Bar/Column chart legend items, axis titles, labels, markers and series by utilizing the Kendo Drawing API. You can do that by setting a JavaScript function name as a string parameter of the Series Visual method:
SeriesDefaults -> .Column().Visual("columnVisual") or
Series -> series.Column(…).Visual("columnVisual")
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.