Hi,
Can you explain how to set the spacing in between candlesticks?
here is my XAML code
<local:CustomSeriesDescriptorSelector.OhlcDescriptor>
<telerik:OhlcSeriesDescriptor
CategoryPath="Date"
OpenPath="Open"
HighPath="High"
LowPath="Low"
ClosePath="Close"
ItemsSourcePath="OhlcData">
<telerik:OhlcSeriesDescriptor.Style>
<Style TargetType="telerik:CandlestickSeries">
<Setter Property="ShowLabels" Value="True" />
<Setter Property="LegendSettings">
<Setter.Value>
<telerik:SeriesLegendSettings Title="ohlc data" />
</Setter.Value>
</Setter>
</Style>
</telerik:OhlcSeriesDescriptor.Style>
</telerik:OhlcSeriesDescriptor>
</local:CustomSeriesDescriptorSelector.OhlcDescriptor>
Attached the screen of what it looks like. My objective is that the candles do not overlap.