From 0bc667e7d125c56b116638b091abb6420f803a16 Mon Sep 17 00:00:00 2001 From: pratu16x7 Date: Fri, 3 Nov 2017 23:10:33 +0530 Subject: [PATCH] add docs for specific_values --- docs/index.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/index.html b/docs/index.html index ce46ecd..6abfed1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -125,6 +125,18 @@ +
  ...
+    // Include specific Y values in input data to be displayed as lines
+    // (before passing data to a new chart):
+
+    data.specific_values = [
+      {
+        title: "Altitude",
+        line_type: "dashed", // or "solid"
+        value: 38
+      }
+    ]
+  ...