Chart / Charts / Chart Types / Cartesian / Series / Fast Series / Fast Point Series
In This Topic

    Fast Point Series

    In This Topic

    The fast point series is used to display point clouds with controllable x value, z value, and color. It is the recommended way to display point charts when rendering very large data sets and when high performance and rendering speed are essential. The images below illustrate the fast point series in 2D and 3D:

     

     Creating a Fast Point Series

    Range series are represented by the NFastPointSeries type. An instance of this type must be added to the series collection of a Cartesian chart:

    Copy Code
    // add fast point series to it
    NFastPointSeries fastPoint = new NFastPointSeries();
    chart.Series.Add(fastPoint);
    
     Passing Data
    See Also