Hi Experts,
Im unable to find modify the pie chart colors using dashboard studio. I have tried to add field colors under options in dashboard studio. Unable to edit for specific visualisation in the source code field.
Have a field called "supp_type", I was looking for pie chart to be green for value "current", Amber for "previous" and red for "old".
When I include the charting.fieldcolors it doesn't accept or doesn't allow to save the panel code.
Can you help me in adding that custom colors into dashboard studio.
index=lab host=hmclab
| spath path=hmc_info{} output=LIST
| mvexpand LIST
| spath input=LIST
| where category == "hmc"
| search hmc_version=V* OR hmc_version=unknown
| dedup hmc_name
| eval supp_type=case(match(hmc_version,"^V10.*|^V9R2.*"), "current", match(hmc_version, "^V9R1.*"), "previous", match(hmc_version, "^V8.*|^V7.*"), "old")
| chart count by supp_type useother=false
Source Code from dashboard studio:
------------------------------------------------------
{
"type": "viz.pie",
"dataSources": {
"primary": "ds_RxEsq1cK"
},
"title": "HMC Versions",
"options": {
"chart.showPercent": true,
"backgroundColor": "transparent",
"charting.fieldColors": {"current":0x008000, "previous":0xffff00, "old":0xff0000}
},
"context": {},
"showProgressBar": false,
"showLastUpdated": false
}
I have tried to add the below the option under the panel. It seems to have worked.
I have tried to add the below the option under the panel. It seems to have worked.