-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use ChartState in vegafusion-wasm (#521)
* Reapply "Refactor to move ChartState to vegafusion core (#519)" (#520) This reverts commit 713b159. * Use ChartState in vegafusion-wasm * format
- Loading branch information
Showing
48 changed files
with
12,952 additions
and
1,283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,3 +52,6 @@ __pycache__ | |
/minio_data/ | ||
|
||
/.ipynb_checkpoints/ | ||
|
||
# Examples | ||
examples/**/node_modules |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
### Chart Editor | ||
|
||
This example is a simple chart editor that relies on the vegafusion-wasm package, and connects to the | ||
vegafusion server over gRPC-Web | ||
|
||
Launch gRPC-Web server with: | ||
``` | ||
./vegafusion-server --port 50051 --web | ||
``` | ||
|
||
Build and launch editor with | ||
``` | ||
npm install | ||
npm run start | ||
``` |
Oops, something went wrong.