我正在尝试创建一个类似示例的主题:
temp = {
seriesStyles: {
seriesColors: ['red', 'orange', 'yellow', 'green', 'blue', 'indigo'],
highlightColors: ['lightpink', 'lightsalmon', 'lightyellow', 'lightgreen', 'lightblue', 'mediumslateblue']
},
legend: {
fontSize: '8pt'
},
title: {
fontSize: '18pt'
},
grid: {
backgroundColor: 'rgb(211, 233, 195)'
}
};
plot3.themeEngine.newTheme('uma', temp);
plot5.themeEngine.newTheme('uma', temp);
如何更改图表中的数据标签颜色?
答案 0 :(得分:1)
您可以使用css更改JQPlot的数据标签颜色。
将风格应用于这些类
饼图 .jqplot-data-label
.jqplot-point-label
表示折线图/条形图
您还可以查看以下链接:http://www.jqplot.com/tests/point-labels.php#chart3
希望它有所帮助!!
此致 阿尼什