Hi all,
I'm trying to create a small line in a bar chart.
I've tried to use a marked zone but this creates a line over the whole of the chart.
I only need a line across a small part of the chart.
Attached are screenshot of how i would like it to work and how it looks right now.
I'm trying to create a small line in a bar chart.
I've tried to use a marked zone but this creates a line over the whole of the chart.
I only need a line across a small part of the chart.
Attached are screenshot of how i would like it to work and how it looks right now.
ChartMarkedZone mZone =
new
ChartMarkedZone();
mZone.ValueStartY = 90;
mZone.ValueEndY = 90;
mZone.Appearance.Border.Color = Color.Red;
mZone.Appearance.Border.Width = 2;
chart_overzichtAantallen.PlotArea.MarkedZones.Add(mZone);