I have a Points3D serie where some of the points have a mark.
How can I make only the marks visible and not the curve?
Show only marks
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Show only marks
If I understand you correctly then you can manipulate the visibility of the inter-point curve like this:TL123 wrote:I have a Points3D serie where some of the points have a mark.
How can I make only the marks visible and not the curve?
Code: Select all
private void InitializeChart()
{
Points3D series = new Points3D(tChart1.Chart);
series.FillSampleValues();
series.Marks.Visible = true;
series.LinePen.Visible = false;
series.Pointer.Visible = true;
}
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |