Group: Forum Members
Last Active: 11 Years Ago
Posts: 20,
Visits: 1
|
Hi,
I am loading a chart with data by doing:
For iIndex as integer =0 to 10 m_Point = CType(NChartControl_1D.Charts(0).Series.Add(SeriesType.Point), NPointSeries) m_Point.InflateMargins = True m_Point.AddDataPoint(New NDataPoint(myX, myY, myZ, myLabel)) m_Point.DataLabelStyle.Visible = False m_Point.UseXValues = True m_Point.UseZValues = True next
Is there a way to assign a specific color to each m_Point I am creating. I need to assign a specific color to each one, automatic colors are not valid in my case.
Thanks,
Ignacio
|