HighChart 不同颜色(柱状图)

北战南征 提交于 2019-11-29 23:55:26
var chart = new Highcharts.Chart({
            chart: {
                plotBackgroundColor: null,
                plotBorderWidth: null,
                backgroundColor: "transparent",
                plotShadow: false,
                renderTo: 'CMForNetWidthInCmts'
            },
            colors:["#434348", "#3398db", "#90ed7d", "#f7a35c", "#61a0a8", "#61a0a8", "#91c7ae", "#2f4554"], title: { // text: PORTAL.Translate.cmts_table_AllNetCMTypeCount text: "" }, tooltip: { pointFormat: '{series.name}: <b>{point.y}</b>' }, plotOptions: { pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: { enabled: true, color: '#000000', connectorColor: '#000000', format: '<b>{point.name}</b>: {point.y} ( {point.percentage:.1f} % )' } } }, series: [{ type: 'pie', name: PORTAL.Translate.Report_pon_Quantity, data: [], }] });

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!