Hello!
I have some problems with label layout.
I use labellayout like this:
line.LabelLayout.UseLabelLocations = true;
line.LabelLayout.OutOfBoundsLocationMode = OutOfBoundsLocationMode.PushWithinBounds;
line.LabelLayout.InvertLocationsIfIgnored = true;
chart.LabelLayout.EnableInitialPositioning = true;
chart.LabelLayout.RemoveOverlappedLabels = true;
chart.LabelLayout.EnableLabelAdjustment = true;
line.LabelLayout.EnableDataPointSafeguard = true;
line.LabelLayout.DataPointSafeguardSize = new NSizeL(
new NLength(3f, NRelativeUnit.ParentPercentage),
new NLength(3f, NRelativeUnit.ParentPercentage));
Result you can see on chart1.jpg. Overlapping labels aren't removed actually. But if I use zoom I can get chart2.jpg example. It's better, but it has some problems on different zoom locations - for example data labels can be absent at all, or they can look like on chart1.jpg. How can I get proper data labels layout?
Actually functionality I need is like in chart3.jpg. I want to point with cursor on any place of chart and get values under cursor. Cursor can be pointed on line or point or empty space. It doesn't really matther whether it will be like tooltip or I get values programmatically. But I guess there is no such functionality in nevron charts. Can you give me advise how can I get something like this?
Sorry for my poor english. If you don't undestand something, I'll try to explain it in another way. Thank you!