This question is locked. New answers and comments are not allowed.
Is it possible using the DateTimeContinuousAxis to set a range? I have a graph where I am plotting points. The issue is the graph "stretches" out as you add points. So if you have 2 points it plots them both over the entire axis. What I would like to do is plot the 2 points on the beginning of the graph and leave the rest blank. I would like the axis to cover a set time range.
<telerik:RadCartesianChart x:Name="myChart"> <chartView:LineSeries CategoryBinding="DateCategory" ValueBinding="Value1" Stroke="#880000FF" StrokeThickness="2"/> <chartView:LineSeries CategoryBinding="DateCategory" ValueBinding="Value2" Stroke="#8800FF00" StrokeThickness="2"/> <chartView:LineSeries CategoryBinding="DateCategory" ValueBinding="Value3" Stroke="#88FF0000" StrokeThickness="2"/> <telerik:RadCartesianChart.Behaviors> <telerik:ChartPanAndZoomBehavior ZoomMode="Horizontal" PanMode="Horizontal"/> </telerik:RadCartesianChart.Behaviors> <telerik:RadCartesianChart.HorizontalAxis> <chartView:DateTimeContinuousAxis MajorStepUnit="Hour" LabelInterval="10" LabelFormat="HH:mm:ss" FontFamily="Segoe UI" PlotMode="OnTicks" LabelFitMode="Rotate" MaximumTicks="31" /> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.VerticalAxis> <chartView:LinearAxis x:Name="VerticalAxis" FontFamily="Segoe UI" Minimum="-5" Maximum="5"/> </telerik:RadCartesianChart.VerticalAxis> <telerik:RadCartesianChart.Grid> <chartView:CartesianChartGrid MajorLinesVisibility="Y" MajorYLineDashArray="3,4" /> </telerik:RadCartesianChart.Grid> </telerik:RadCartesianChart>