A scientific charting library focused on performance optimised real-time data visualisation at 25 Hz update rates for data sets with a few 10 thousand up to 5 million data points.
Changing Number[] lineDashArrayProperty will not update the binding double[] lineDashesProperty which is used by the renderer (via StyleUtils), thus any change will never be shown on screen.
This is just a quick fix, in my opinion it would be better to remove lineDashesProperty and use some variant of toLineDashArray to convert the Number[] when rendering
Changing
Number[] lineDashArrayProperty
will not update the bindingdouble[] lineDashesProperty
which is used by the renderer (viaStyleUtils
), thus any change will never be shown on screen.This is just a quick fix, in my opinion it would be better to remove
lineDashesProperty
and use some variant oftoLineDashArray
to convert theNumber[]
when rendering