How to change color for conditional formatting for big number visualization? #30660
Replies: 1 comment
-
The error "A valid color scheme is required" suggests that the color scheme you are trying to use is not recognized by Apache Superset. In Superset, color schemes need to be defined in a specific way, and they must be part of the available color choices. To resolve this issue, ensure that your color scheme is defined correctly. The {
"id": "customScheme",
"label": "Custom Scheme",
"isDefault": false,
"colors": [
"#C81D2A", "#CD501E", "#D68A1B", "#C6B024", "#83B51F", "#1B9B1B"
]
} This JSON object should be included in the Make sure that the |
Beta Was this translation helpful? Give feedback.
-
I want change conditional formatting to achieve more gradations of success / alert / error.
I'm trying to add this code to Json metadata, but get error: "A valid color scheme is required".
That am I doing wrong?
Beta Was this translation helpful? Give feedback.
All reactions