<div id='info'>
<h3><code>highlight();</code></h3>
<p>Highlight a particular or an array of values.</p>
<p>The chart below give an example of highlighting an array of value 5 and 15.</p>
<p><code>.highlight([5,15]);</code></p>
</div>
#info{
margin: 1em;
}
//Redsift
//highlight();
//highlight a particular or an array of value.
//highlight 5 and 15
let chart = d3_rs_bars.html()
.highlight([5,15]);
d3.select('body').datum([1,2,30,20]).call(chart);
View Compiled