当前位置:网站首页>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>尝试一下 »
以上实例输出结果为:
边栏推荐
- Explain the camera in unity and its application
- C # basic 1-events and commissions
- Eureka registers with each other, only showing each other or only showing problems in one
- Cause analysis of restart of EMC cx4-120 SPB controller
- The EMC vnx5200 fault light is on, but there is no hardware fault prompt
- Database -- use of explain
- Unity3d tutorial notes - unity initial 04
- Ctfshow network lost track record (2)
- C # basic 3-value type and reference type, packing and unpacking
- After Europe, it entered Japan and South Korea again, and the globalization of Pico consumer VR accelerated
猜你喜欢

Moco V3: visual self supervision ushers in transformer

The development of smart home industry pays close attention to edge computing and applet container technology

Nacos principle

C language final review questions

ctfshow 网络迷踪做题记录(1)

MoCo V3:视觉自监督迎来Transformer

又一款装机神器

MySQL sorts out the review content -- with mind map

A 58 year old native of Anhui Province, he has become the largest IPO investor in Switzerland this year

Maxwell is an easy-to-use software for capturing MySQL data in real time
随机推荐
MoCo V2:MoCo系列再升级
There have been two safety accidents in a month after listing. Is L9 ideal?
Maxwell 一款简单易上手的实时抓取Mysql数据的软件
Guo Mingxuan: meta contraction is conducive to the development of VR competitors, and apple XR headshow will change the industry rules
查询oracle视图创建语句及如何向视图中插入数据[通俗易懂]
Reading and writing basic data types in protobuf
Dom4J的Bug
MoCo V3:视觉自监督迎来Transformer
Sharkteam completes the safety audit of flow ecological NFT market matrixmarket
BUUCTF做题Upload-Labs记录pass-01~pass-10
mfc wpf winform(工业用mfc还是qt)
取色器实战(Qt含源码)
一名在读研究生的自白:我为什么会沉迷于openGauss 社区?
A 58 year old native of Anhui Province, he has become the largest IPO investor in Switzerland this year
Explain various coordinate systems in unity in detail
Explain the mobile control implementation of unity in detail
How to turn on or off the disk LED of EMC Vmax
ctfshow 网络迷踪做题记录(1)
mysql还有哪些自带的函数呢?别到处找了,看这个就够了。
C language final review questions