X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=docs%2Fdata.html;h=135fe16057c1610bf5b5faa94d87e5df08547fd0;hb=ff91a8e4a020453eb8543f9fa866ada9eb36fd7a;hp=3a237b12c8c30c46b32a2dcfe189dd499d7eb5e8;hpb=10494b48b43d9ca8710d441d3c530c7d546f3edf;p=dygraphs.git diff --git a/docs/data.html b/docs/data.html index 3a237b1..135fe16 100644 --- a/docs/data.html +++ b/docs/data.html @@ -292,8 +292,13 @@ customBars: [x, [low1, val1, high1], [low2, val2, high2], ...] -

To specify missing data, set the value to null. You may not set a value - inside an array to null. Use null instead of the entire array.

+

To specify missing data, set the value to null or NaN. You may not set a value + inside an array to null or NaN. Use null or NaN instead of the entire array. + The only difference between the two is when the option + connectSeparatedPoints + true. In that case, the gaps created by nulls are filled in, and gaps + created by NaNs are preserved. +

Functions

@@ -304,6 +309,8 @@ function() { return x; } + Functions can return strings, arrays, data tables, URLs, or any other data type. +

DataTable

You can also specify a Google Visualization Library DataTable @@ -325,5 +332,16 @@ - walkthrough of using std. dev. in a spreadsheet chart + +