X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-options-reference.js;h=88ec2a1b4e525ee17fe049e039711fd3d315325f;hb=1a27bd14b2938f17a3a9896d64645892a6b26a1e;hp=9991484d32bb7f74693173e44e701405f5ad0285;hpb=88e95c462340958bdfd0ac4c0736b94c5fd21024;p=dygraphs.git diff --git a/dygraph-options-reference.js b/dygraph-options-reference.js index 9991484..88ec2a1 100644 --- a/dygraph-options-reference.js +++ b/dygraph-options-reference.js @@ -581,6 +581,30 @@ Dygraph.OPTIONS_REFERENCE = // "labels": [ "Debugging" ], "type": "string", "description": "Set this option to log timing information. The value of the option will be logged along with the timimg, so that you can distinguish multiple dygraphs on the same page." + }, + "showRangeSelector": { + "default": "false", + "labels": ["Interactive Elements"], + "type": "boolean", + "description": "Show the range selector widget. This option can only be specified at Dygraph creation time." + }, + "rangeSelectorHeight": { + "default": "40", + "labels": ["Interactive Elements"], + "type": "integer", + "description": "Height, in pixels, of the range selector widget. This option can only be specified at Dygraph creation time." + }, + "rangeSelectorPlotStrokeColor": { + "default": "#808FAB", + "labels": ["Interactive Elements"], + "type": "string", + "description": "The range selector mini plot stroke color. This can be of the form \"#AABBCC\" or \"rgb(255,100,200)\" or \"yellow\". You can also specify null or \"\" to turn off stroke." + }, + "rangeSelectorPlotFillColor": { + "default": "#A7B1C4", + "labels": ["Interactive Elements"], + "type": "string", + "description": "The range selector mini plot fill color. This can be of the form \"#AABBCC\" or \"rgb(255,100,200)\" or \"yellow\". You can also specify null or \"\" to turn off fill." } } ; // @@ -593,7 +617,7 @@ Dygraph.OPTIONS_REFERENCE = // (function() { var warn = function(msg) { if (console) console.warn(msg); }; var flds = ['type', 'default', 'description']; - var valid_cats = [ + var valid_cats = [ 'Annotations', 'Axis display', 'Chart labels',