AAChartCore-Kotlin icon indicating copy to clipboard operation
AAChartCore-Kotlin copied to clipboard

How to plot X versus Y plot

Open suresh16eee47 opened this issue 2 years ago β€’ 1 comments

I have a "X" of type array with length of 1024 and "y" of type array with length of 1024, how to plot "X" vs "Y"

suresh16eee47 avatar Jul 01 '22 02:07 suresh16eee47

Have you tried using a AASeriesElement with an array of array of size 2?

AASeriesElement()
            .data(arrayOf(arrayOf(1, 2), arrayOf(3, 4))),

pereriksson avatar Jul 01 '22 10:07 pereriksson