Jump to content
Software FX Community

Re: X-axis labels on top of graph


Software FX

Recommended Posts

What's happening here is that your Y-Axis remained Un-initialize as there 

was no values for us to determine a scale.

After setting you data, you can call RecalcScale and we will set a dummy 0

to 100 scale. Or you can check for the following condition after CloseData.

if (Min >= Max) {

Min = 0

Max = 100

}

To have your own pre-selected range.

--

Frank

SFX

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...