qpieslice 渐变效果_饼图与渐变(Pie chart with gradient)

这篇博客介绍了如何使用Highcharts库来创建一个具有渐变效果的饼图。通过配置颜色并利用Highcharts.Color方法进行颜色亮度调整,实现从暗到亮的渐变。示例代码展示了具体的实现过程,包括设置图表、标题、数据标签等,并提供了最终的显示效果。
摘要由CSDN通过智能技术生成

饼图与渐变(Pie chart with gradient)

以下是单色饼图的示例。

配置 (Configurations)

现在让我们看一下所采取的其他配置/步骤。

颜色

使用Highcharts.getOptions().plotOptions.pie.colors属性配置每个饼图的颜色。// Make monochrome colors and set them as default for all pies

Highcharts.getOptions().plotOptions.pie.colors = (

function () {

var colors = [];

var base = Highcharts.getOptions().colors[0];

var i;

for (i = 0; i < 10; i += 1) {

// Start out with a darkened base color (negative brighten), and end

// up with a much brighter color

colors.push(Highcharts.Color(base).brighten((i - 3)/7).get());

}

return colors;

}()

);

例子 (Example)

highcharts_pie_monochrome.htm

Highcharts Tutorial

$(document).ready(function() {

var chart = {

plotBackgroundColor: null,

plotBorderWidth: null,

plotShadow: false

};

var title = {

text: 'Browser market shares at a specific website, 2014'

};

var tooltip = {

pointFormat: '{series.name}: {point.percentage:.1f}%'

};

var plotOptions = {

pie: {

allowPointSelect: true,

cursor: 'pointer',

dataLabels: {

enabled: true,

format: '{point.name}%: {point.percentage:.1f} %',

style: {

color: (

Highcharts.theme && Highcharts.theme.contrastTextColor) ||

'black'

}

}

}

};

var series = [{

type: 'pie',

name: 'Browser share',

data: [

['Firefox', 45.0],

['IE', 26.8],

{

name: 'Chrome',

y: 12.8,

sliced: true,

selected: true

},

['Safari', 8.5],

['Opera', 6.2],

['Others', 0.7]

]

}];

// Make monochrome colors and set them as default for all pies

Highcharts.getOptions().plotOptions.pie.colors = (function () {

var colors = [];

var base = Highcharts.getOptions().colors[0];

var i;

for (i = 0; i < 10; i += 1) {

// Start out with a darkened base color (negative brighten), and end

// up with a much brighter color

colors.push(Highcharts.Color(base).brighten((i - 3)/7).get());

}

return colors;

}());

var json = {};

json.chart = chart;

json.title = title;

json.tooltip = tooltip;

json.series = series;

json.plotOptions = plotOptions;

$('#container').highcharts(json);

});

结果 (Result)

验证结果。

新页面打开

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值