Skip to content

Stacked Bar: De-emphasize one of the bars? #244

Answered by errantmind
errantmind asked this question in Q&A
Discussion options

You must be logged in to vote

Thanks, this led me in the right direction. I actually needed to modify the individual stacked bars and, using something similar to your response I was able to do it:

[StackedBar.selectors.bar]: {
    fade: (d, i) => {
       if (i % 3 === 2) {
          return '';
       } else {
          return null;
       }
    }
 },

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@errantmind
Comment options

Answer selected by errantmind
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants