New to Kendo UI for Vue? Start a free 30-day trial
BaseUnit
The baseUnit
type of an X or Y axis.
jsx
<Chart>
<ChartXAxis>
<ChartXAxisItem :base-unit="baseUnit" />
</ChartXAxis>
<ChartSeries>
<ChartSeriesItem :type="'scatter'" :data-items="data" />
</ChartSeries>
</Chart>
type
BaseUnit = "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "weeks" | "months" | "years";