From 6a84f2dfcf856aadb11db53f9df6272a9939b253 Mon Sep 17 00:00:00 2001 From: Robert Konigsberg Date: Wed, 13 Jun 2012 16:05:56 -0400 Subject: [PATCH] Explain the role of NaN in connectSeparatedPoints. --- docs/data.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/data.html b/docs/data.html index b010407..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

-- 2.7.4