Skip to content

Commit 251443f

Browse files
authored
Merge pull request #83 from vizzuhq/petervidos-patch-14
Minor update FAQ
2 parents b832222 + 1680519 commit 251443f

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

FAQ.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
# FAQ
22

3-
## How to use Vizzu with Webpack, React or other bundlers/frameworks?
3+
## How to use Vizzu with Webpack, React, Vite and other bundlers/frameworks?
44

5-
Here you can find a tutorial and a complete example on how to use Vizzu with different bundlers/frameworks:
5+
Here's a tutorial and an example:
66

77
https://github.com/vizzuhq/vizzu-lib/blob/main/docs/content/tutorial/0-intro.md#working-with-bundlers-changing-the-location-of-the-wasm-module
88

99
## Why on(), off(), feature() methods fail after constructor call?
1010

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.
1212
Because of this, any method except `animate()` will throw an exception while the library is not initialized.
1313

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
1515
this promise is resolved.
1616

1717
## How to load data from CSV into Vizzu?
1818

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/
2020

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

Comments
 (0)