Hi,
I cannot determine on how to customize charts in Excel using C#, that is cut away the default series line colors on the right and get the plot line blue (or any other color).
I tried this:
// Setting the foreground colour
myChart.NSeries[VolumeReleased].SeriesLines.Color = Color.Red;
// set all the points to red
for (int i = 0; i < myChart.NSeries[VolumeReleased].Points.Count; i++)
myChart.NSeries[VolumeReleased].Points[i].Area.ForegroundColor = Color.Red;
but without any result.
Thank you very much
Francesco