Here's my code. I have attached a screenshot of the resulting chart. I have a few questions...
1. How do I remove the horizontal marks on the left axis?
2. How do I remove the spacing between each bar?
3. How do I make it always show '0' on the horizontal axis?
<telerikChart:RadCartesianChart PaletteName="Light" SelectionPaletteName="LightSelected" Margin="10,10,10,10" Grid.Row="0" x:Name="hoursChart" BackgroundColor="White"> <telerikChart:RadCartesianChart.HorizontalAxis> <telerikChart:NumericalAxis MajorStep="10" LineColor="White" MajorTickBackgroundColor="White" /> </telerikChart:RadCartesianChart.HorizontalAxis> <telerikChart:RadCartesianChart.VerticalAxis> <telerikChart:CategoricalAxis GapLength="0" LineColor="Transparent" MajorTickThickness="1" PlotMode="BetweenTicks" LabelFitMode="MultiLine" ShowLabels="False" MajorTickBackgroundColor="#A9A9A9" /> </telerikChart:RadCartesianChart.VerticalAxis> <telerikChart:RadCartesianChart.Series> <telerikChart:BarSeries CategoryBinding="Category" ValueBinding="Value" ItemsSource="{Binding SeriesData}" CombineMode="Stack" /> <telerikChart:BarSeries CategoryBinding="Category" ValueBinding="Value" ItemsSource="{Binding SecondSeriesData}" CombineMode="Stack" /> <telerikChart:BarSeries CategoryBinding="Category" ValueBinding="Value" ItemsSource="{Binding ThirdSeriesData}" CombineMode="Stack" /> <telerikChart:BarSeries CategoryBinding="Category" ValueBinding="Value" ItemsSource="{Binding FourthSeriesData}" CombineMode="Stack" /> </telerikChart:RadCartesianChart.Series> <telerikChart:RadCartesianChart.Palette> <telerikChart:ChartPalette > <telerikChart:ChartPalette.Entries> <telerikChart:PaletteEntry FillColor="#d12f23" StrokeColor="Transparent" /> <telerikChart:PaletteEntry FillColor="#eebc2c" StrokeColor="Transparent" /> <telerikChart:PaletteEntry FillColor="#b1a58f" StrokeColor="Transparent" /> <telerikChart:PaletteEntry FillColor="#86c4cd" StrokeColor="Transparent" /> </telerikChart:ChartPalette.Entries> </telerikChart:ChartPalette> </telerikChart:RadCartesianChart.Palette> </telerikChart:RadCartesianChart>