Spencer Childress

Results 20 comments of Spencer Childress

Bump. I'm experiencing something similar where small code changes of, say, a line don't trigger a reload whereas larger changes and small changes higher in the .js file trigger a...

@jwildfire , I don't grok the issue here. For one, text marks aren't affected by `color_by`. Should they be? Or is the issue that the legend doesn't appear for charts...

Nevermind, `'text'` isn't a supported legend mark. Defaulting to `'square'`.

@pburnsdata testNew is only for trying out new unit tests. It's not actually part of the test suite.

@sibyllwangxxxx suggested the options in multi-select filter dropdowns be `selected`. Right now the options are not by default `selected`. This update would at least make the initial selections apparent to...

I tried out and really liked [`slim-select`](https://slimselectjs.com/), a low-profile select framework: `"slim-select": "^1.26.1"` ``` input.each(function (d, i, selection) { d.select = new SlimSelect({ select: this, }); }); input.on('change', function (event,...

And as a select-all this option should work: ![image](https://user-images.githubusercontent.com/5428548/123675238-7d685d00-d810-11eb-9472-4b64a343717f.png) But it doesn't work as a deselect-all...

Probably just update [this line](https://github.com/RhoInc/Webcharts/blob/f4932c2e2ebed32257e209c4945b59af5b2e5628/src/controls/makeSubsetterControl.js#L40) from: ``` .property('selected', d => d === control.start); ``` to ``` .property('selected', d => d === control.start || control.multiple === true); ```