-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Description
The document (http://dc-js.github.io/dc.js/docs/html/LineChart.html#xyTipsOn__anchor) suggests that xyTipsOn has no effect if brush in on. The document also suggests that it is boolean.
However, the code supports a special value 'always'
dc.js/src/charts/line-chart.js
Line 353 in 82469c9
| if (this.xyTipsOn() === 'always' || (!(this.brushOn() || this.parentBrushOn()) && this.xyTipsOn())) { |
@gordonwoodhull is it worth supporting that special value?