I am new to Nevron charts. I have to show a point series where some of the points will have different shapes and colors. I found an example that alternates the fill color of the points. Here the ComposeDataPoint returns a standard NDataPoint but could I construct an shape data point instead (I am not familiar with the data point types)
// using compose for ( int i = 0; i < point.Values.Count; i++  { var dataPoint = point.ComposeDataPoint( i if ( i % 2 == 0  dataPoint [ DataPointValue.FillStyle ] = new NColorFillStyle( Color.Red else dataPoint [ DataPointValue.FillStyle ] = new NColorFillStyle( Color.Green // store the data point after you modify it point.StoreDataPoint( i, dataPoint }
But I need to change the shape, size and color of points as shown below. Is this possible?