Documentation: https://mermaid.js.org/syntax/xyChart.html#chart-theme-variables
Expectation: Specifically make the first bar red, and the other three bars dark gray.
Current: It applies the first color to all bars.
Am I using plotColorPalette wrong? It only applies the first color in the list to all bar instead of the first bar.
---
config:
xyChart:
width: 500
height: 500
chartOrientation: horizontal
themeVariables:
xyChart:
titleColor: "#ff0000"
plotColorPalette: "#ff0000, #434455, #434455, #434455"
---
xychart-beta
title "Sales Revenue"
x-axis ["A", "B", "C", "D"]
y-axis "Revenue (in $)" 0 --> 100
bar [16.0, 21.8, 71.5, 8.3]