User (Legacy) Posted July 20, 2005 Report Share Posted July 20, 2005 I have a two series chart. I want the first series to plot but the second series values to appear below the x-axis value. i.e. jan feb mar apr may..... series(0) x-axis label 10 20 33 44 89...... values from series(1) Is this even possible? Quote Link to comment Share on other sites More sharing options...
Software FX Posted July 22, 2005 Report Share Posted July 22, 2005 In Chart FX 5, the only way to do this will be for you to pass the data manually using OpenData-CloseData (No databinding). You would set: chart.Legend(i) = Month + vbCr + vbLf + Number Then use: chart.Axis(AXIS_X).Style = chart.Axis(AXIS_X).Style And Not AS_SINGLELINE In newer version of Chart FX it is possible to configure the separator used to join multiple label fields (LabelSeparator property), so in this case you could customize it to vbCr + vbLf. -- Francisco Padron www.chartfx.com Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.