New to Telerik UI for WPFStart a free 30-day trial

Plot Mode

Updated on Aug 24, 2026

RadChartView allows you to modify the layout of the Categorical and Date Time axes to improve the look and feel of the series presented. Depending on the selected plot mode, the axis's ticks and labels will be visualized differently.

The default PlotMode property is BetweenTicks.

You can set the PlotMode from XAML like this:

XAML
	<telerik:RadCartesianChart x:Name="telerik">
		<telerik:RadCartesianChart.HorizontalAxis>
			<telerik:CategoricalAxis PlotMode="BetweenTicks"/>
		</telerik:RadCartesianChart.HorizontalAxis>
	
		<telerik:RadCartesianChart.VerticalAxis>
			<telerik:LinearAxis/>
		</telerik:RadCartesianChart.VerticalAxis>
	
		<telerik:RadCartesianChart.Series>
			<telerik:BarSeries>
				<telerik:BarSeries.DataPoints>
					<telerik:CategoricalDataPoint Value="10" Category="1"/>
					<telerik:CategoricalDataPoint Value="4" Category="2"/>
					<telerik:CategoricalDataPoint Value="7" Category="3"/>
					<telerik:CategoricalDataPoint Value="11" Category="4"/>
					<telerik:CategoricalDataPoint Value="15" Category="5"/>
				</telerik:BarSeries.DataPoints>
			</telerik:BarSeries>
		</telerik:RadCartesianChart.Series>
	</telerik:RadCartesianChart>

The PlotMode property can be used with the following predefined values:

  • OnTicks - in this mode, the ticks match labels. Best for Linear series.
    Telerik UI for WPF RadChartView Using the OnTicks Plot Mode

  • BetweenTicks - ticks are margins (labels are between two ticks); a small margin on both sides is provided. Useful for Bar series.
    Telerik UI for WPF RadChartView Using the BetweenTicks Plot Mode

  • OnTicksPadded - ticks match labels; a small margin on both sides is provided for better presentation. It is recommended to be used with Scatter series.
    Telerik UI for WPF RadChartView Using the OnTicksPadded Plot Mode

Not finding the help you need?
Contact Support