AAChartCore-Kotlin
AAChartCore-Kotlin copied to clipboard
How to plot X versus Y plot
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"
Have you tried using a AASeriesElement with an array of array of size 2?
AASeriesElement()
.data(arrayOf(arrayOf(1, 2), arrayOf(3, 4))),