Group: Forum Members
Last Active: 9 Years Ago
Posts: 30,
Visits: 61
|
Hi,
I would like to report a little mistake on the online documentation for .NET Nevron Charts : Mesh Surface (URL : http://helpdotnetvision.nevron.com/UsersGuide_ChartTypes_Surface_Mesh_Surface.html)
The C# code is correct : // create a surface series NMeshSurfaceSeries surface = new NMeshSurfaceSeries(); chart.Series.Add(surface);
But the mistake is in the VB section : ' create a mesh surface series Dim surface As New NMeshSurfaceSeries chart.Series.Add(SeriesType.MeshSurface)
It should be this instead ' create a mesh surface series Dim surface As New NMeshSurfaceSeries chart.Series.Add(surface)
Otherwise of course nothing gets plotted on the chart.
Regards,
Joël
|