reveal

Joe 2021-12-07T10:48:53.127400Z

Hello, what is the data structure I need to be able to display a scatter or line plot? The docs suggest a sequence of tuples of numbers, or just a sequence of numbers. But in both cases the only options I see are view:table, java bean or nav. Is there a trick I'm missing? Thanks

vlaaad 2021-12-07T12:39:06.127700Z

Does your coll have more than 1024 items?

Joe 2021-12-07T12:46:34.128200Z

It does - is that the limit?

vlaaad 2021-12-07T13:29:57.128400Z

Yeah

Joe 2021-12-07T13:30:10.128700Z

Thanks!

vlaaad 2021-12-07T13:30:46.128900Z

I probably should allow more, it was mainly to not check too many items in a coll so actions are faster..

wilkerlucio 2021-12-07T16:53:37.129800Z

@vlaaad you can do a sample checking, the s/every from spec does that, and you can control de sample size

vlaaad 2021-12-07T17:39:04.130Z

Yeah I definitely should check a sample

vlaaad 2021-12-07T17:39:58.130200Z

I do remember there were javafx performance issues when rendering many nodes in a chart

vlaaad 2021-12-07T17:41:44.130400Z

Joe, I would suggest having a look at Vega view

vlaaad 2021-12-07T17:41:45.130600Z

https://vlaaad.github.io/vega-in-reveal

vlaaad 2021-12-07T17:42:08.130900Z

It's much more capable than built-in charts

Joe 2021-12-07T19:55:35.131500Z

Oh cool, thanks I’ll check it out

Joe 2021-12-07T19:56:49.132700Z

Though tbh I love how easy the native reveal graphing is, size limitations notwithstanding.