Webcharts
Webcharts copied to clipboard
Set options in multi-select filter dropdowns to selected initially.
Related to #254. Currently all options in multi-select filter dropdowns are not selected
even though the corresponding filter values are represented in the data.
Probably just update this line from:
.property('selected', d => d === control.start);
to
.property('selected', d => d === control.start || control.multiple === true);