Hello,
- There are 10000 points, but they are programmatically processed and only 60 of them are passed to the Chart? Is that correct or the Chart receives all 10000 points?
sorry i wrong to explain the part relative of how the points are processed...actually the all points are inserted in the property "categories" of components <ChartCategoryAxisItem>....the method getSparseToFixedArrA() or getSparseToFixedArrB take the original array (data took from the server) and with some operation it recreates the same array with the same length but with only the "int value".. for example :
getSparseToFixedArrA()
input ---> [0.1,1,0.2,2,0.3,3,...n]
result
output-->[ ,1 , ,2, ,3, ,...k-int]
so the result of the array let the "int value" at the same row but the other values are deleted,thus the rows will be empty. Therefore the property category take effectivelly 10000 points.
-There are two series A and B, which can be rendered alone or both. They both have 60 data points each?
it depends of the selection...for example if you select the first you'll get only 100000 for the first line chart but...conversely for the the second...or both that in this case you'll get 20000 points.
- Is it possible to see the rendered Chart from the Real applications see how it looks? You can blur some parts of it if there is sensitive data.
i've attached .
yes...that's all...plus i've noted that with this settings the value that i want to display with the tooltip does not displayed correctly for the horizontal axis maybe because of the too points inside the array.
My best