File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed
lib/node_modules/@stdlib/plot/hist/lib Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -39,17 +39,11 @@ function defaults() {
3939 o = { } ;
4040
4141 // Boolean indicating whether to re-render on a change event:
42- if ( isREPL ) {
43- o . autoRender = false ;
44- } else {
45- o . autoRender = true ;
46- }
42+ o . autoRender = false ;
43+
4744 // Boolean indicating whether to generate an updated view on a render event:
48- if ( isREPL ) {
49- o . autoView = false ;
50- } else {
51- o . autoView = false ;
52- }
45+ o . autoView = false ;
46+
5347 // Histogram description:
5448 o . description = '' ;
5549
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ var merge = mergeFcn({
102102* @param {Array } [x] - values to bin
103103* @param {Array } [bins] - edges and/or number of bins
104104* @param {Options } [options] - constructor options
105- * @param {boolean } [options.autoRender=true ] - indicates whether to re-render on a change event
105+ * @param {boolean } [options.autoRender=false ] - indicates whether to re-render on a change event
106106* @param {boolean } [options.autoView=false] - indicates whether to generate an updated view on a render event
107107* @param {(string|StringArray) } [options.barColors='category10'] - bar face color(s)
108108* @param {(number|NumberArray) } [options.barOpacity=0.9] - bar face opacity
You can’t perform that action at this time.
0 commit comments