You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Why on(), off(), feature() methods fail after constructor call?
10
10
11
-
Vizzu constructor has to load Vizzu's WebAssembly module, which is done in an asyncronous manner to prevent blocking the whole page.
11
+
The Vizzu constructor has to load Vizzu's WebAssembly module asynchronously to prevent blocking the whole page.
12
12
Because of this, any method except `animate()` will throw an exception while the library is not initialized.
13
13
14
-
There is an `initializing` promise in the Vizzu class which will resolve when initialization is finished. All methods can be called after
14
+
There is an `initializing` promise in the Vizzu class, which will resolve when initialization is finished. You can call all methods after
15
15
this promise is resolved.
16
16
17
17
## How to load data from CSV into Vizzu?
18
18
19
-
This example reads the data from CSV: https://lib.vizzuhq.com/0.3.0/content/howtos/csv-input/
19
+
This example reads the data from a CSV: https://lib.vizzuhq.com/0.3.0/content/howtos/csv-input/
20
20
21
-
You can find the source here: https://github.com/vizzuhq/vizzu-lib-doc/tree/main/docs/0.3.0/content/howtos/csv-input
22
-
23
-
The CSV loading part is in the csv-input.js file.
21
+
You can find the source here; the CSV loading part is in the csv-input.js file: https://github.com/vizzuhq/vizzu-lib-doc/tree/main/docs/0.3.0/content/howtos/csv-input
0 commit comments