Skip to content

v3.0.22

Choose a tag to compare

@graphieros graphieros released this 05 Sep 05:35
· 182 commits to master since this release

VueUiScatter - new performance mode

Enable performance mode to render large datasets without clogging the DOM:

const config = ref({
  usePerformanceMode: true, // false by default (previous behavior)
}) 

Here is an example with 100000 datapoints:

Enregistrement.de.l.ecran.2025-09-05.a.07.27.30.mov

Check out the example for yourself here

When performance mode is enabled:

  • all datapoints of a given series are painted in a single DOM node
  • config.downsample is ignored (all datapoints are rendered)
  • config.style.layout.plots.significance is ignored (all datapoints have the same opacity)