Hi Janosch,
1. I think ToOADate should be mentioned in the NRange1DD documentation. I think pretty much everybody who wants a timeline range would be stuck here. Even nicer would be a constructer like NRange1DD( TimeDate start, TimeDate end).
It is part of the .NET framework class DateTime, and is well documented. Check out the following topic in MSDN: http://msdn.microsoft.com/en-us/library/system.datetime.tooadate.aspx.
2. The time format should be "mm:ss:msmsmsms", with "min" as a suffix. Should be an easy task, but sadly the formatSpecifier in NDateTimeValueFormatter Constructor doesn’t seem to be documented.
The control uses standard .NET date/time formatting with a few extensions and predefined formats. A complete list on how .NET formats dates can be found here:
http://msdn.microsoft.com/en-us/library/97x6twsz.aspx
You can use the following format string "mm:ss:fff". Again take a look at the above topic related to formatting.
3. Does Nevron provide sth like a crosshair, which you can slide along the curve and hops from XValue to XValue and displays the y-value / x-value (see the screen shot)? If not, can you point me to some Nevron methods / classes which you think might be helpful to implement this?
Yes - you can take a look at the following example shipped with the component - Interactivity\Tools\Data Cursor Tool
4. BTW, is there a way attach images to a post? I wanted to provide a screenshot here, but the forum didn’t let me.
I think it only allows for jpgs...
5. Is OpenGL in Window mode considered to be the fastest rendering method? Speed is very crucial for us and will be one of the key criteria for choosing our graphing sdk.
Yes - but you can also improve gdi by turning antialiasing off.
nChartControl1.Settings.ShapeRenderingMode = ShapeRenderingMode.None;
nChartControl1.Settings.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixel;
6. The BackColor propertie of NChartControl seems to be ignored. My backcolor is always white.
7. The BackgroundImage propertie of NChartControl has a strange behavior
You should use the BackgroundStyle property of the control. The above two are inherited from the Control and are not used:
nChartControl1.BackgroundStyle.FillStyle = new NColorFillStyle(Color.Red);
8. How do I enforce a major tick mark with a label at the beginning and at the end of the range (in the same format as mentioned above)?
You can use custom ticks, but that way you'll have to specify all the ticks. Alternatively you can use custom scale programming and create a custom tick/label decorator. If you want to go that way I can show you how to achieve this...
Hope I helped - let me know if you have any questions or meet any problems.
Best regards,
Bob