当前位置: 代码迷 >> Web前端 >> Highcharts 柱图往边框与阴影
  详细解决方案

Highcharts 柱图往边框与阴影

热度:805   发布时间:2013-04-02 12:35:26.0
Highcharts 柱图去边框与阴影
示例代码
var chart = new Highcharts.Chart({
	plotOptions:{
		column:{
			borderColor: "",//去边框
            shadow: false		//去阴影
		}
	}
})