diff options
Diffstat (limited to 'src/web/plotly.md')
-rw-r--r-- | src/web/plotly.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/web/plotly.md b/src/web/plotly.md new file mode 100644 index 0000000..31736b7 --- /dev/null +++ b/src/web/plotly.md @@ -0,0 +1,16 @@ +# Plotly js + +Visualization library for javascript based on `d3`. + +Official documentation is [here][plotly-js]. + +## Line chart example +The following is an example for a *line* chart which contains many options that +I frequently use. It is bloated on purpose to document the options for myself. + +[Rendered html](src/plotly.html) +```html +{{#include src/plotly.html:3: }} +``` + +[plotly-js]: https://plotly.com/javascript/ |