New to Kendo UI for Vue? Start a free 30-day trial

ChartProps

Represents the props of the Kendo UI for Vue Chart component.

NameTypeDefaultDescription

axisDefaults?

AxisDefaults

This option allows to override the default axis options.

dir?

string

Represents the dir HTML attribute.

donutCenterRender?

string | object | Function

When set, the prop is used to render the Donut Center template.

onAxislabelclick?

(event: AxisLabelClickEvent) => void

Fires when the user clicks an axis label.

onDrag?

(event: DragEvent) => void

Fires as long as the user is dragging the Chart with the mouse or through swipe gestures.

onDragend?

(event: DragEndEvent) => void

Fires when the user stops dragging the Chart.

onDragstart?

(event: DragStartEvent) => void

Fires when the user starts dragging the Chart.

onLegenditemclick?

(event: LegendItemClickEvent) => void

Fires when the user clicks a legend item (see example).

onLegenditemhover?

(event: LegendItemHoverEvent) => void

Fires when the user hovers over a legend item.

onNoteclick?

(event: NoteClickEvent) => void

Fires when the user clicks a note.

onNotehover?

(event: NoteHoverEvent) => void

Fires when the user hovers over a note.

onPlotareaclick?

(event: PlotAreaClickEvent) => void

Fires when the user clicks the plot area. The click event is triggered by the tap and contextmenu events. To distinguish between the original events, inspect the e.originalEvent.type field.

onPlotareahover?

(event: PlotAreaHoverEvent) => void

Fires when the user hovers the plot area (see example).

onRender?

(event: RenderEvent) => void

Fires when the Chart is ready to render on screen (see example). For example, you can use it to remove loading indicators. Any changes made to the options are ignored.

onSelect?

(event: SelectEvent) => void

Fires when the user modifies the selection.

The range units are:

  • Generic axis—Category index (0-based).
  • Date axis—Date instance.

onSelectend?

(event: SelectEndEvent) => void

Fires when the user completes the modification of the selection (see example).

The range units are:

  • Generic axis—Category index (0-based).
  • Date axis—Date instance.

onSelectstart?

(event: SelectStartEvent) => void

Fires when the user starts modifying the axis selection.

The range units are:

  • Generic axis—Category index (0-based).
  • Date axis—Date instance.

onSeriesclick?

(event: SeriesClickEvent) => void

Fires when the user clicks the Chart series.

The click event will be triggered by the tap and contextmenu events. To distinguish between the original events, inspect the e.originalEvent.type field.

onSerieshover?

(event: SeriesHoverEvent) => void

Fires when the user hovers over the Chart series.

onZoom?

(event: ZoomEvent) => void

Fires as long as the user is zooming the Chart by using the mousewheel operation.

onZoomend?

(event: ZoomEndEvent) => void

Fires when the user stops zooming the Chart.

onZoomstart?

(event: ZoomStartEvent) => void

Fires when the user uses the mousewheel to zoom the Chart.

paneDefaults?

PaneDefaults

This option allows to override the default pane options.

panes?

Pane[]

The chart panes configuration.

pannable?

boolean | DragAction

Specifies if the Chart can be panned (see example).

renderAs?

String

Sets the preferred rendering engine (see example). If not supported by the browser, the Chart switches to the first available mode.

The supported values are:

  • "svg"—If available, renders the component as an inline .svg file.
  • "canvas"—If available, renders the component as a canvas element.

seriesColors?

string[]

The default colors for the Chart series. When all colors are used, new colors are pulled from the start again.

seriesDefaults?

SeriesDefaults

This option allows to override the default series options.

transitions?

boolean

If set to true, the Chart plays animations when it displays the series. By default, animations are enabled.

zoomable?

boolean | Zoomable

Specifies if the Chart can be zoomed (see example).