AreaLines in transparent filled area region
Posted: Fri Feb 19, 2010 8:51 am
Hi,
I have an issue with filled area series and the AreaLines.
I added an Area series to my chart and filled it up with a blue transparent gradient.
Then I set the visible property of the AreaLines to false. But in the transparent region I still see the AreaLines. Probably because they are not drawn with the same transparency.
My sample code:
What can I do about is? Is this a known issue?
Thanks,
Marijke.
I have an issue with filled area series and the AreaLines.
I added an Area series to my chart and filled it up with a blue transparent gradient.
Then I set the visible property of the AreaLines to false. But in the transparent region I still see the AreaLines. Probably because they are not drawn with the same transparency.
My sample code:
Code: Select all
m_tchart.Axes.Bottom.Grid.Visible = false;
Steema.TeeChart.Styles.Area area = new Steema.TeeChart.Styles.Area();
m_tchart.Series.Add(area);
fillWithSampleValues();
area.Gradient.Visible = true;
area.Gradient.Transparency = 75;
area.Gradient.StartColor = System.Drawing.Color.Blue;
area.Gradient.EndColor = System.Drawing.Color.Blue;
area.LinePen.Visible = true;
area.AreaLines.Visible = false;
Thanks,
Marijke.