Jump to content
Software FX Community

Multiple Y-Axis


Namco

Recommended Posts

I searched the forum to this topic, but didn't find something useful.

I have created a mutliple type chart via ASP(unfortunately no ASP.NET available) and need a second Y-Axis on the right side with an Axis Maximum of 100%. The red line should be at the top when its 100, but now its related to the left axis because i dont know how to create a second one.

For the left Axis i have done this:

Set AxisY = Chart.Axis(AXIS_Y)

  AxisY.Step = 25

  AxisY.MinorStep = 5

  AxisY.Max = 250

  AxisY.Min = 0

  AxisY.MinorTickMark = TS_CROSS

  AxisY.Grid = True

  AXISY.Decimals = 0

  AxisY.Title = "Pr

Link to comment
Share on other sites

As Gunner mentioned, you need to configure the properties on the AxisY2 object, but you also need to assign

your data series to use the second Y Axis. See below.

' Set the first data series to Bar Chart and use the main Y Axis

With Chart0.Series(0)

  .Gallery = Gallery_Bar

  .YAxis = YAxis_Main

End With

' Set the second data series to Line Chart and use the secondary Y Axis

With Chart0.Object.Series(1)

  .Gallery = Gallery_Lines

  .YAxis = YAxis_Secondary

End With

' Format the second Y Axis

With Chart0.AxisY2

  .min = 0

  .max = 100

End With

Steve

Link to comment
Share on other sites

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...