博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HighCharts设置图表背景透明
阅读量:5021 次
发布时间:2019-06-12

本文共 2178 字,大约阅读时间需要 7 分钟。

其实就一句话:

 backgroundColor: 'rgba(0,0,0,0)'

完整示例:

 

$(function () {        $('#container').highcharts({            chart: {                type: 'column',                backgroundColor: 'rgba(0,0,0,0)'            },            title: {                text: 'Stacked column chart'            },            xAxis: {                categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']            },            yAxis: {                min: 0,                title: {                    text: 'Total fruit consumption'                },                stackLabels: {                    enabled: true,                    style: {                        fontWeight: 'bold',                        color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'                    }                }            },            legend: {                align: 'right',                x: -70,                verticalAlign: 'top',                y: 20,                floating: true,                backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',                borderColor: '#CCC',                borderWidth: 1,                shadow: false            },            tooltip: {                formatter: function() {                    return ''+ this.x +'
'+ this.series.name +': '+ this.y +'
'+ 'Total: '+ this.point.stackTotal; } }, plotOptions: { column: { stacking: 'normal', dataLabels: { enabled: true, color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white' } } }, series: [{ name: 'John', data: [5, 3, 4, 7, 2] }, { name: 'Jane', data: [2, 2, 3, 2, 1] }, { name: 'Joe', data: [3, 4, 4, 2, 5] }] }); });

 

还有另外一个属性,plotBackgroundColor: null

这个属性的意思是指图表部分,不含标题、说明信息,x轴y轴上的提示信息等部分的背景色,例如:

 

转载于:https://www.cnblogs.com/haitao-fan/p/3383408.html

你可能感兴趣的文章
软件测试领域中的10个生存和发展技巧
查看>>
Camera前后摄像头同时预览
查看>>
HDU 1856
查看>>
课堂作业01--架构师的职责
查看>>
iOS计算富文本(NSMutableAttributedString)高度
查看>>
2017/09/15 ( 框架2)
查看>>
图像处理
查看>>
『ORACLE』搭建Data Guard(11g)
查看>>
STA206x的Windows CE系统烧录
查看>>
冒烟测试和回归测试的区别
查看>>
Python3模块-random、hashlib和base64
查看>>
SQL中join的用法
查看>>
[Swift]LeetCode1093. 大样本统计 | Statistics from a Large Sample
查看>>
[Swift] 随机数 | Random numbers
查看>>
poj2328---"right on"进入下一个case的模板(while)
查看>>
Collections.sort详解
查看>>
python中self和cls
查看>>
[Redux] Passing the Store Down with <Provider> from React Redux
查看>>
mysql悲观锁总结和实践
查看>>
字符串中所有字母的组合
查看>>