File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -168,23 +168,25 @@ const NeoBarChart = (props: ChartProps) => {
168
168
const chartColorsByScheme = getD3ColorsByScheme ( colorScheme ) ;
169
169
// Compute bar color based on rules - overrides default color scheme completely.
170
170
const getBarColor = ( bar ) => {
171
- let { id } = bar ;
172
- let colorIndex = keys . indexOf ( id ) ;
171
+ let { index : colorIndex } = bar ;
173
172
if ( colorIndex >= chartColorsByScheme . length ) {
174
173
colorIndex %= chartColorsByScheme . length ;
175
174
}
176
175
177
- const dict = { } ;
178
176
if ( ! props . selection ) {
179
177
return chartColorsByScheme [ colorIndex ] ;
180
178
}
179
+
180
+ const dict = { } ;
181
181
dict [ selection . index ] = bar . indexValue ;
182
182
dict [ selection . value ] = bar . value ;
183
183
dict [ selection . key ] = bar . id ;
184
+
184
185
const validRuleIndex = evaluateRulesOnDict ( dict , styleRules , [ 'bar color' ] ) ;
185
186
if ( validRuleIndex !== - 1 ) {
186
187
return styleRules [ validRuleIndex ] . customizationValue ;
187
188
}
189
+
188
190
return chartColorsByScheme [ colorIndex ] ;
189
191
} ;
190
192
You can’t perform that action at this time.
0 commit comments