Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/VVelox/hugo-dusky-neon-potato.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZane C. Bowers-Hadley <vvelox@vvelox.net>2018-09-25 11:08:58 +0300
committerZane C. Bowers-Hadley <vvelox@vvelox.net>2018-09-25 11:08:58 +0300
commit3bd08484ebea9990162601dc58180e96c2acc084 (patch)
tree849924870fba942dfd185bf00389bd921bf7068d /README.md
parent5d9bcc8e6585b114237894bdee98ce32940616bb (diff)
add size options, subchart, and zoom options
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index f925582..8e3cc60 100644
--- a/README.md
+++ b/README.md
@@ -55,6 +55,7 @@ Currently the possible charts that can be made with out issue are as below.
* scatter
* pie
* donut
+* gauge
Below is a example of creating a chart.
@@ -92,6 +93,13 @@ This generates the chart and binds it to the HTML.
| [grid-x-show](https://c3js.org/samples/options_gridline.html) | null | no | If the X grid should be shown. Set to 'true' to enable. |
| [grid-y-show](https://c3js.org/samples/options_gridline.html) | null | no | If the X grid should be shown. Set to 'true' to enable. |
| [legend-hide](https://c3js.org/samples/options_legend.html) | null | no | If defined, this hides the legend. |
+| [zoom-enable](https://c3js.org/samples/interaction_zoom.html) | null | no | If defined, this enables zooming. |
+| [zoom-rescale](https://c3js.org/reference.html#zoom-rescale) | null | no | If defined, this enables rescaling when zooming. |
+| [subchart-enable](https://c3js.org/samples/options_subchart.html) | null | no | If defined, this enables shows a sub chart, which can be useful when zooming. |
+| [subchart-size](https://c3js.org/reference.html#subchart-size-height) | null | no | Used for setting a custom subchart size. |
+| [size-height](https://c3js.org/samples/options_size.html) | null | no | Set a specific height for the chart. |
+| [size-width](https://c3js.org/samples/options_size.html) | null | no | Set a specific height for the chart. |
+
Please note that while C3 supports area and gauge, this currently lacks support for those.
@@ -223,3 +231,8 @@ defaults are shown below.
# text on the graphs
graph-text="#FF00FF"
```
+
+## TODO
+
+* Implement more settings for gauge graph type.
+* Add more axis options.