Jump to content
Software FX Community

Regd Axis Step


sudidela

Recommended Posts

After zooming the chart, we are capturing max and min values of Y axis of chart.

These max and min values are used for chart.AxisY.SetScrollView(min,max);

After this, if  we check the Y axis step, the step is coming as negative value.

 

Can the Axis(Y or X axis) step can be a negative value?

Thanks... 

 

Link to comment
Share on other sites

  • 2 weeks later...

You can set the Min, Max and Step properties of AxisX for the chart based on the data you are passing. For instance, I set the AxisX properties as:

Chart1.AxisX.Max = 5;

Chart1.AxisX.Min = -5; (negative value)

Chart1.AxisX.Step = 1;

You can set the AxisX properties appropriately based on the data you are passing.

The value of the Step Property must be greater than the value of the MinorStep property. Please note the values for the Step and MinorStep properties are data related.

 

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...