Exactly what features are supported by what versions?


https://www.nevron.com/Forum/Topic4172.aspx
Print Topic | Close Window

By John Linacre - 14 Years Ago

Folks:

Am evaluating Nevron software, and am having trouble identifying which features are supported by which versions (Lite, Professional, Enterprise) and are in which packages. For instance, "NChartGridControl", "NSelectorTool", "NTrackballTool".

I am working through the Examples and the Help file, but they assume that all features of all packages are available.

Does anyone have a list of what "N..." are included in each version and package, or know where I can find such a list?

By Nevron Support - 14 Years Ago

Hello John,

 

You can observe the differences between the editions from the Help Documentation (Features List): http://help.nevron.com/dotnetvision/

and the Chart Editions Comparison List.

By Leonardo Rocha - 13 Years Ago

Hi,

I had the evaluation license to use some XY and XYZ scatter point plots in my application. After getting a professional license, the watermark shows in the the plots, but for my surprise also in the XY chart as you can see in the picture attached, with "Using functionality from higher edition" written. How do I remove the watermark?

http://www.nevron.com/Products.ChartFor.NET.FeatureList.aspx

 

 

By Nevron Support - 13 Years Ago

Hi Leonardo,

Can you post the code you use to configure the control for review? Also the control has a chart in the background that you don't use - most likely this is the default chart. To get rid of it call

nChartControl1.Panels.Clear();

before adding new charts.

By Luis Baldeon - 12 Years Ago

Hi

I have the same problem.  The watermark on my charts still have the watermark.  How do you make that go away?

Also, how do you label the Depth axis?

Code and picture is included

 
By Nevron Support - 12 Years Ago

Please address all licensing related questions to: sales@nevron.com

Regarding labeling the Depth axis – you should add title for the Depth axis just like you have titles for the other axes.

By Luis Baldeon - 12 Years Ago

I thought this code would work.  It does not give errors but it also does not work.

 

chart.Axis(StandardAxis.PrimaryX).ScaleConfigurator = linearScale
linearScale.Title.Text = "Angle Degrees"

Dim scaleConfiguratorY As NStandardScaleConfigurator = CType(chart.Axis(StandardAxis.PrimaryY).ScaleConfigurator, NStandardScaleConfigurator)
scaleConfiguratorY.Title.Text = "Gain (" & dBunits & ")"

Dim scaleConfiguratorZ As NStandardScaleConfigurator = CType(chart.Axis(StandardAxis.SecondaryY).ScaleConfigurator, NStandardScaleConfigurator)
scaleConfiguratorZ.Title.Text = "Frequency (MHz)"

By Nevron Support - 12 Years Ago
The depth axis can be accessed with:

chart.Axis(StandardAxis.Depth)

Your code uses SecondaryY, which refers to a secondary Y axis (that is not visible by default). Please try with StandardAxis.Depth and make sure that the axis itself is visible.
By Luis Baldeon - 12 Years Ago

Hi, thanks for the reply but this code does not work.  I've tried several variations also and still can't get the depth axis title to show up.

Dim scaleConfiguratorZ As NStandardScaleConfigurator = CType(chart.Axis(StandardAxis.Depth).ScaleConfigurator, NStandardScaleConfigurator)
scaleConfiguratorZ.Title.Text = "Frequency (MHz)"

By Nevron Support - 12 Years Ago

Hi Luis,

The code looks Ok, probably it's run out of context - please post the complete code you use to configure the control. Also did you call the nChartControl.Refresh() method?

By Luis Baldeon - 12 Years Ago

Hi

The complete vb function is attached to a previous post, code.txt

Thanks

By Nevron Support - 12 Years Ago
Please refer to the following example in our Windows Forms example application:

All Examples > Axes > General > Axis Label Orientation

The example is about axis labels, but it also displays titles for all visible axes (including the Depth axis).