admin管理员组

文章数量:1332865

I cannot design the sunburst in the dashboard. I tried to switch off styledMode ...but nothing It look like Highchart Dashboard ignore the setting styledMode. Is ist possible to start Highchart Dashboard without styledmode ?

outside of Dashboard it looks like this enter image description here

inside Dashboard: enter image description here

I cannot design the sunburst in the dashboard. I tried to switch off styledMode ...but nothing It look like Highchart Dashboard ignore the setting styledMode. Is ist possible to start Highchart Dashboard without styledmode ?

outside of Dashboard it looks like this enter image description here

inside Dashboard: enter image description here

Share asked Nov 22, 2024 at 6:47 PitRanldPitRanld 1 1
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Bot Commented Nov 22, 2024 at 11:20
Add a comment  | 

1 Answer 1

Reset to default 0

In Highcharts Dashboards, styled mode is enabled by default. Unfortunately, you can't disable styled mode for Highcharts Dashboards as a whole.

However, you can customize the styles by overriding the default CSS. You can create your own CSS rules to style the components as per your requirements.

Start with importing the default CSS stylesheets​:

@import url("https://code.highcharts/dashboards/css/dashboards.css");
@import url("https://code.highcharts/dashboards/css/datagrid.css");

Then you can add your own CSS rules to customize the appearance of the sunburst chart or any other component. For example:

.highcharts-series {
  fill: #ff0000; /* Example: Change series fill color */
}

本文标签: i have problems with combining highchart sunburst with highchart dashboardStack Overflow