Create BarSeries:
_barModel = new BarSeries
{
ValueMember = "Model",
CategoryMember = "N",
LegendTitle = "Model",
IsVisible = false
};
_radChartViewGss.Series.Add(_barModel);
Set data source (dataTable):
_radChartViewGss.DataSource = _table;
After this, changing the property _barModel.IsVisible = true does not lead to anything - the bar series is not visible.
Why???