当前位置:网站首页>30.学习Highcharts 标签旋转柱形图
30.学习Highcharts 标签旋转柱形图
2022-07-28 19:31:00 【微服务商城技术分享】
Highcharts 标签旋转柱形图
以下实例演示了标签旋转柱形图。
我们在前面的章节已经了解了 Highcharts 基本配置语法。接下来让我们来看下其他的配置。在 dataLabels 中添加 rotation 属性:
配置
dataLabels : 数据标签
dataLabels 定义图上是否显示数据标签。
文本旋转程度由 rotation 属性决定。我们还可以通过其他属性来定义文本标签的背景,间隔,边框等。
dataLabels = {
enabled: true,
rotation: -90,
color: '#FFFFFF',
align: 'right',
format: '{point.y:.1f}', // 一个小数
y: 10, // 从上到下 10 像素
style: {
fontSize: '13px',
fontFamily: 'Verdana, sans-serif'
}
}实例
文件名:highcharts_column_rotated.htm
<html>
<head>
<meta charset="UTF-8" />
<title>Highcharts 教程 | 菜鸟教程(runoob.com)</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
</head>
<body>
<div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div>
<script language="JavaScript">
$(document).ready(function() {
var chart = {
type: 'column'
};
var title = {
text: '2014 年全球最大人口城市排名'
};
var subtitle = {
text: 'Source: <a href="http://en.wikipedia.org/wiki/List_of_cities_proper_by_population">Wikipedia</a>'
};
var xAxis = {
type: 'category',
labels: {
rotation: -45,
style: {
fontSize: '13px',
fontFamily: 'Verdana, sans-serif'
}
}
};
var yAxis ={
min: 0,
title: {
text: 'Population (millions)'
}
};
var tooltip = {
pointFormat: '2008 年人口: <b>{point.y:.1f} 百万</b>'
};
var credits = {
enabled: false
};
var series= [{
name: 'Population',
data: [
['Shanghai', 23.7],
['Lagos', 16.1],
['Instanbul', 14.2],
['Karachi', 14.0],
['Mumbai', 12.5],
['Moscow', 12.1],
['Sao Paulo', 11.8],
['Beijing', 11.7],
['Guangzhou', 11.1],
['Delhi', 11.1],
['Shenzhen', 10.5],
['Seoul', 10.4],
['Jakarta', 10.0],
['Kinshasa', 9.3],
['Tianjin', 9.3],
['Tokyo', 9.0],
['Cairo', 8.9],
['Dhaka', 8.9],
['Mexico City', 8.9],
['Lima', 8.9]
],
dataLabels: {
enabled: true,
rotation: -90,
color: '#FFFFFF',
align: 'right',
format: '{point.y:.1f}', // one decimal
y: 10, // 10 pixels down from the top
style: {
fontSize: '13px',
fontFamily: 'Verdana, sans-serif'
}
}
}];
var json = {};
json.chart = chart;
json.title = title;
json.subtitle = subtitle;
json.xAxis = xAxis;
json.yAxis = yAxis;
json.tooltip = tooltip;
json.credits = credits;
json.series = series;
$('#container').highcharts(json);
});
</script>
</body>
</html>尝试一下 »
以上实例输出结果为:
边栏推荐
- How to build a foreign environment for the self-supporting number of express evaluation? How much does it cost?
- 【input 身份证号】星号 代替,input 切割成 多个 小格格(类似)
- Baklib | why do enterprises need to pay attention to customer experience?
- 蓝队入门之效率工具篇
- Zcmu--5066: dark corridor
- ctfshow 网络迷踪做题记录(2)
- 承载银行关键应用的容器云平台如何选型及建设?
- What is ci/cd| Achieve faster and better software delivery
- PostgreSQL数据库删库前是不是需要把所有连接断开才能删除?
- 4.1 Member的各种调用方式
猜你喜欢

There have been two safety accidents in a month after listing. Is L9 ideal?

How NPM switches Taobao source images

MoCo V1:视觉领域也能自监督啦

How to turn on or off the disk LED of EMC Vmax

How does lazada store make up orders efficiently? (detailed technical explanation of evaluation self-supporting number)

Meaning of disk status of EMC DataDomain

小程序容器技术,让移动研发效率提升500%
![[Zhou Zhou has a prize] cloud native programming challenge](/img/0d/e26e37cddf3cf01b5e9dcaf7211106.png)
[Zhou Zhou has a prize] cloud native programming challenge "edge container" track invites you to fight!

Study and use of cobalt strike

Moco V1: the visual field can also be self supervised
随机推荐
九鑫智能正式加入openGauss社区
MoCo V2:MoCo系列再升级
ABB电磁流量计维修信号变送器维修41F/E4技术参数
How does lazada store make up orders efficiently? (detailed technical explanation of evaluation self-supporting number)
npm如何切换淘宝源镜像
MobileViT:挑战MobileNet端侧霸主
New development of letinar in Korea: single lens 4.55G, light efficiency up to 10%
Jiuxin intelligence officially joined opengauss community
(转)冒泡排序及优化详解
mfc wpf winform(工业用mfc还是qt)
Reading and writing basic data types in protobuf
【周周有奖】云原生编程挑战赛“边缘容器”赛道邀你来战!
After Europe, it entered Japan and South Korea again, and the globalization of Pico consumer VR accelerated
实习日记第一周
蓝队入门之效率工具篇
关键路径的分析
Explain the script data transmission and notification in unity
4.1 various calling methods of member
什么是 CI/CD? | 实现更快更好的软件交付
小程序容器技术,让移动研发效率提升500%