X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-options-reference.js;h=3bef499290b24c2c04b15f38d7f5944bd467e272;hb=3fb9650f21246c82ad436622b89ed4e922d84b21;hp=7f16cf273c558f8af11531b95377a561a6ec6a25;hpb=b5bdd85b1a969707aa52a0253712fdab7f2108ce;p=dygraphs.git diff --git a/dygraph-options-reference.js b/dygraph-options-reference.js index 7f16cf2..3bef499 100644 --- a/dygraph-options-reference.js +++ b/dygraph-options-reference.js @@ -41,13 +41,36 @@ Dygraph.OPTIONS_REFERENCE = // "default": "false", "labels": ["Data Line display"], "type": "boolean", - "description": "Draw a small dot at each point, in addition to a line going through the point. This makes the individual data points easier to see, but can increase visual clutter in the chart." + "description": "Draw a small dot at each point, in addition to a line going through \ + the point. This makes the individual data points easier to see, but \ + can increase visual clutter in the chart. The small dot can be \ + replaced with a custom rendering by supplying a \ + drawPointCallback." + }, + "drawPointCallback": { + "default": "null", + "labels": ["Data Line display"], + "type": "function(g, seriesName, canvasContext, cx, cy, color, pointSize)", + "parameters": [ + [ "g" , "the reference graph" ], + [ "seriesName" , "the name of the series" ], + [ "canvasContext" , "the canvas to draw on" ], + [ "cx" , "center x coordinate" ], + [ "cy" , "center y coordinate" ], + [ "color" , "series color" ], + [ "pointSize" , "the radius of the image." ] + ], + "description": "Draw a custom item when drawPoints is enabled. \ + Default is a small dot matching the series color. This method \ + should constrain drawing to within pointSize pixels from (cx, cy). \ + Also see drawHighlightPointCallback" }, "height": { "default": "320", "labels": ["Overall display"], "type": "integer", - "description": "Height, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored." + "description": "Height, in pixels, of the chart. If the container div has \ + been explicitly sized, this will be ignored." }, "zoomCallback": { "default": "null", @@ -58,7 +81,8 @@ Dygraph.OPTIONS_REFERENCE = // [ "maxDate" , "milliseconds since epoch." ], [ "yRanges" , "is an array of [bottom, top] pairs, one for each y-axis." ] ], - "description": "A function to call when the zoom window is changed (either by zooming in or out)." + "description": "A function to call when the zoom window is changed (either \ + by zooming in or out)." }, "pointClickCallback": { "snippet": "function(e, point){
  alert(point);
}", @@ -96,6 +120,24 @@ Dygraph.OPTIONS_REFERENCE = // ["row", "???"] ] }, + "drawHighlightPointCallback": { + "default": "null", + "labels": ["Data Line display"], + "type": "function(g, seriesName, canvasContext, cx, cy, color, pointSize)", + "parameters": [ + [ "g" , "the reference graph" ], + [ "seriesName" , "the name of the series" ], + [ "canvasContext" , "the canvas to draw on" ], + [ "cx" , "center x coordinate" ], + [ "cy" , "center y coordinate" ], + [ "color" , "series color" ], + [ "pointSize" , "the radius of the image." ] + ], + "description": "Draw a custom item when a point is highlighted. \ + Default is a small dot matching the series color. This method \ + should constrain drawing to within pointSize pixels from (cx, cy) \ + Also see drawPointCallback" + }, "includeZero": { "default": "false", "labels": ["Axis display"],