1 - How do you get the text on an axis label to autowrap? (See pictures below)
2 - When zooming in on an area the plots for the point series seem to disappear.
I have a number of series and some of the points are overlapped. If I zoom in to one area of the chart the points for some, or all, of the series disappear - but they are visible in other areas.
Code: Select all
If TChart(SCATTER).Visible = True And Not TChart(SCATTER).Zoom.Zoomed Then
x = TChart(SCATTER).MousePosition.x
y = TChart(SCATTER).MousePosition.y
ZoomAdjust = 150
TChart(SCATTER).Zoom.ZoomRect x - ZoomAdjust, y - ZoomAdjust, x + ZoomAdjust, y + ZoomAdjust
TChart(SCATTER).ClipPoints = True
End If
<img src="http:\\www.ppvote.com\tchart\zoomed_out.gif"><p>
This is zoomed in to the bottom left - the yellow diamond has gone.
Yesterday it was more random in what dissapeared - I had quite a few points going.
<img src="http:\\www.ppvote.com\tchart\zoomed_in.gif">