Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
UltraWinChart 6.2 plot against Y2 axis.
posted

Is there a simple way to plot on Y2 axis in 6.2? I am adding points manually to each series as NumericDataPoints:

Imports Infragistics.UltraChart

Dim numSer As New Resources.Appearance.NumericSeries

For point As Integer = 0 To maxCount

numSer.Points.Add(New Resources.Appearance.NumericDataPoint(someValue,someLabel, False))

Next

Me.UltraChart1.Series.Add(numSer)

Thanks!

  • 28496
    Offline posted

    you can create a composite chart with two chart layers, each one using a different Y axis. it's not really simple, but it works.