mstr-viz
Version:
A new dev tool for creating custom visualizations
38 lines (31 loc) • 915 B
Markdown
mstr-viz
A new dev tool for creating MicroStrategy custom visualizations
# 1. Install
```shell script
npm install -g mstr-viz
or
sudo npm install -g mstr-viz
```
# 2. Init a New Viz
```shell script
mstr-viz MyVis
or
mstr-viz init MyVis
New option "use-react-config" is added since 2.2.1, default value is true.
When use-react-config=true, initialize new viz using template with react format panel, eg.
mstr-viz init MyVis --use-react-config=true
or
mstr-viz init MyVis
When use-react-config=false, initialize new viz using template with old format panel, eg.
mstr-viz init MyVis --use-react-config=false
```
# 3. Migrate an Old Viz
```shell script
mstr-viz migrate ./D3WordCloud
```
# 4. Command Details
```shell script
mstr-viz -h
```
# 5. More Help
See [docs](https://www2.microstrategy.com/producthelp/Current/VisSDK/Content/topics/HTML5/intro_custom_viz_tool.htm) on our community.