This question is locked. New answers and comments are not allowed.
I have programically created chart. Chart works fine, but I'm not able to show gridlines or change axis title font size.
Here's my code:
RadCartesianChart chart = new RadCartesianChart();
CartesianChartGrid grid = new CartesianChartGrid();
grid.MajorLinesVisibility = GridLineVisibility.XY;
chart.Grid = grid;
var barSeries = new BarSeries() {ItemsSource = dataItems};
barSeries.CategoryBinding = new PropertyNameDataPointBinding("Category");
barSeries.ValueBinding = new PropertyNameDataPointBinding("Value");
LinearAxis VeAx = new LinearAxis();
VeAx.HorizontalLocation = AxisHorizontalLocation.Left;
VeAx.Title = "Axis title";
barSeries.VerticalAxis = VeAx;
chart.Series.Add(barSeries);
MyStackPanel.Children.Add(chart);
MyStackPanel.UpdateLayout();