anychart说明文档

   今天学习anychart,在慧都控件网上看有关文档,模仿试着做了个demo,发现慧都空间网的“Flash图表AnyChart应用教程六:创建圆形仪表”里的指针“<pointer type="bar" value="35" color="Gray" />”有误,应该为:type="needle"。还是看英文原文可靠啊!附英文文档网址:http://www.anychart.com/products/anychart/docs/users-guide/index.html?gauges.html

Your first circular gauge

  • Overview
  • Step 1. Basic Gauge - Creating Circular Gauge
  • Step 2. Scale Settings and Title
  • Step 3. Labels and Tickmarks
  • Step 4. Color Ranges
  • Step 5. Adding Markers
  • Step 6. Pointer
  • Step 7. Tuning frame and Margins
  • Final. Monthly Sales Gauge is Ready

Overview

In this tutorial we will go through the creation of the basic circular gauge step by step, trying to cover all major elements and pointing to the articles for the further tuning a gauge.

So, a Circular Gauge is as minimum a radial scale that sweeps any angle from 0 to 360 degrees and a pointer, Needle or Knob that indicates values on that scale. Gauge scale is usually colored for easy value quality distinction.

We will start from the scratch adding or configuring gauge elements on the each step, as a result we will create a typical speedometer gauge.

Note: in this sample AnyChart.swf is used, but you can optimize the page with selected chart type if you use custom type dependent swf. These swfs are described in SWFs Guide.

Gauge Sample:

  • Launch the sample
  • Download the sample

to top

Step 1. Basic Gauge - Creating Circular Gauge

First of all we need to choose a gauge type, in this sample it should be circular gauge, so we put the following XML settings:

XML Syntax
  • XML Code
Plain code
01<?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <gauges>
04     <gauge>
05       <circular />
06     </gauge>
07   </gauges>
08 </anychart>
<?xml version="1.0" encoding="UTF-8"?> <anychart> <gauges> <gauge> <circular /> </gauge> </gauges> </anychart>

As you can clearly see from this XML Snippet we tell AnyChart just to create one circular gauge, as a result we get the following output:

Live Sample:  Sample Circular Gauge Step 1
anychart说明文档

As you can see, by default gauge has no pointers and some default 360 degrees scale with labels and tickmarks, when trying to recreate this sample please note that you should set appropriate size for AnyChart object in you page (height="300" width="300" in our sample). AnyChart Gauges can be resized, but if you want to create the chart with a single circular gauge on it - it is recommended to start with width that is equal to the height.

to top

Step 2. Scale Settings and Title

Now we will define the scale of the gauge, let's say that our speedometer shows value from 0 to 120 miles per hour.

Let's put this into XML:

XML Syntax
  • XML Code
Plain code
01<?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <gauges>
04     <gauge>
05       <chart_settings>
06         <title>
07           <text><![CDATA[MPH Speedometer]]></text>
08         </title>
09       </chart_settings>
10       <circular>
11         <axis radius="50" start_angle="90" sweep_angle="180">
12           <scale minimum="0" maximum="120" major_interval="20" minor_interval="5" />
13         </axis>
14       </circular>
15     </gauge>
16   </gauges>
17 </anychart>
<?xml version="1.0" encoding="UTF-8"?> <anychart> <gauges> <gauge> <chart_settings> <title> <text>MPH Speedometer</text> </title> </chart_settings> <circular> <axis radius="50" start_angle="90" sweep_angle="180"> <scale minimum="0" maximum="120" major_interval="20" minor_interval="5" /> </axis> </circular> </gauge> </gauges> </anychart>

Note: <axis radius="50"> means that we want gauge axis to cover 50% percents of a gauge size - to understand this better you need to study Positioning, Resizing and Axis Overview Tutorials. start_angle sets the angle from which your scale should be drawn. The point from which the calculation starts is in the lowest points of your circular gauge and the direction is CW. sweep_angle is an actual angle of your circular gauge. In our example we will create a so-called "semi-radial" 180 degrees speedometer.

Now we will see the following result:

Live Sample:  Sample Circular Gauge Step 2
anychart说明文档

We have created a semi-radial speedometer. However if you want your speedometer to remain circular you should set type attribute of frame node to "circular". By default it is set to "Auto" and crops unused space.

to top

Step 3. Labels and Tickmarks

When the scale is ready we can set how labels and tickmarks, we will remove decimal digits from labels and minor tickmarks. We also add a "mph" suffix to our labels. Only axis node is shown for better comprehension:

XML Syntax
  • XML Code
Plain code
01<axis radius="50" start_angle="90" sweep_angle="180">
02   <scale minimum="0" maximum="120" major_interval="20" minor_interval="5" />
03   <labels enabled="true">
04     <font bold="true" />
05     <format><![CDATA[{%Value}{numDecimals:0} mph]]></format>
06   </labels>
07   <minor_tickmark enabled="false" />
08 </axis>
<axis radius="50" start_angle="90" sweep_angle="180"> <scale minimum="0" maximum="120" major_interval="20" minor_interval="5" /> <labels enabled="true"> <font bold="true" /> <format>{%Value}{numDecimals:0} mph</format> </labels> <minor_tickmark enabled="false" /> </axis>

Now the scale looks this way:

Live Sample:  Sample Circular Gauge Step 3
anychart说明文档

to top

Step 4. Color Ranges

An essential part of linear gauges are color ranges that are used to distinct the quality of value shown, in our example we will create three color ranges "Slow", "Average" and "Fast" speed levels. The syntax should be as follows:

XML Syntax
  • XML Code
Plain code
01<axis radius="50" start_angle="90" sweep_angle="180">
02   <scale minimum="0" maximum="120" major_interval="20" minor_interval="5" />
03   <scale_bar enabled="false" />
04   <labels enabled="true">
05     <font bold="true" />
06     <format><![CDATA[{%Value}{numDecimals:0} mph]]></format>
07   </labels>
08   <minor_tickmark enabled="false" />
09   <color_ranges>
10     <color_range start="0" end="40" color="Green" />
11     <color_range start="40" end="80" color="Yellow" />
12     <color_range start="80" end="120" color="Red" />
13   </color_ranges>
14 </axis>
<axis radius="50" start_angle="90" sweep_angle="180"> <scale minimum="0" maximum="120" major_interval="20" minor_interval="5" /> <scale_bar enabled="false" /> <labels enabled="true"> <font bold="true" /> <format>{%Value}{numDecimals:0} mph</format> </labels> <minor_tickmark enabled="false" /> <color_ranges> <color_range start="0" end="40" color="Green" /> <color_range start="40" end="80" color="Yellow" /> <color_range start="80" end="120" color="Red" /> </color_ranges> </axis>

Here we are - our gauge is colored:

Live Sample:  Sample Circular Gauge Step 4
anychart说明文档

Note that as we have added color ranges we no longer need scale_bar. So we have disabled it.

to top

Step 5. Adding Markers

Also, it may be useful to point our some special point, for example, the optimal speed, we can so that with the custom axis labels, that can have a custom tickmark.

XML Syntax
  • XML Code
Plain code
01 <axis>
02   <scale minimum="0" maximum="100" major_interval="10" minor_interval="2" />
03   <labels enabled="true">
04     <font bold="true" />
05     <format><![CDATA[{%Value}{numDecimals:0}]]></format>
06   </labels>
07   <minor_tickmark enabled="false" />
08   <custom_labels>
09     <custom_label value="65" enabled="true">
10       <label enabled="true" align="Outside" padding="20">
11         <format><![CDATA[Optimal]]></format>
12       </label>
13       <tickmark enabled="true" shape="Star5" auto_rotate="false" width="10" length="10" align="Inside" padding="-12">
14         <fill color="Blue" />
15         <border color="DarkColor(Yellow)" />
16       </tickmark>
17     </custom_label>
18   </custom_labels>
19 </axis>
<axis> <scale minimum="0" maximum="100" major_interval="10" minor_interval="2" /> <labels enabled="true"> <font bold="true" /> <format>{%Value}{numDecimals:0}</format> </labels> <minor_tickmark enabled="false" /> <custom_labels> <custom_label value="65" enabled="true"> <label enabled="true" align="Outside" padding="20"> <format>Optimal</format> </label> <tickmark enabled="true" shape="Star5" width="10" length="10" align="Inside" padding="-12"> <fill color="Blue" /> <border color="DarkColor(Yellow)" /> </tickmark> </custom_label> </custom_labels> </axis>

Now we can clearly see optimal speed on the gauge.

Live Sample:  Sample Circular Gauge Step 5
anychart说明文档

to top

Step 6. Pointer

One of the last, but one of the main parts of a gauge is a pointer - there are several ways to display it, but we will choose the most typical for this type of the gauges (all previously set nodes are left apart in the snippet):

XML Syntax
  • XML Code
Plain code
01<?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <gauges>
04     <gauge>
05       <circular>
06         <pointers>
07           <pointer type="bar" value="35" color="Gray" />
08         </pointers>
09       </circular>
10     </gauge>
11   </gauges>
12 </anychart>
<?xml version="1.0" encoding="UTF-8"?> <anychart> <gauges> <gauge> <circular> <pointers> <pointer type="bar" value="35" color="Gray" /> </pointers> </circular> </gauge> </gauges> </anychart>

Now the current sales level is shown, as you can see from the syntax you can place several pointers on one gauge, they can be of a different shape and placed differently (this fact, by the way, allows to create the Bullet Graphs with AnyChart easily):

Live Sample:  Sample Circular Gauge Step 6
anychart说明文档

Note that the view of our needle pointer is far from the ideal. We have simply changed its color without thoroughly examining its numerous attributes. For further information refer to Pointers Tutorial.

to top

Step 7. Tuning frame and Margins

The final step in gauge creation is the definition of a frame and setting up margins. Frame is a complex graphical element that allows to display really nice-looking gauge. We will remove a general chart background and border, remove margins. The frame by default is enabled and has inner_stroke and outer_stroke. If you want you can disable your frame by setting "False" value to enabled attribute.

XML Syntax
  • XML Code
Plain code
01<?xml version="1.0" encoding="UTF-8"?>
02 <anychart>
03   <margin all="5" />
04   <gauges>
05     <gauge>
06       <chart_settings>
07         <title>
08           <text><![CDATA[MPH Speedometer]]></text>
09         </title>
10         <chart_background enabled="false">
11           <border enabled="false" />
12         </chart_background>
13       </chart_settings>
14     </gauge>
15   </gauges>
16 </anychart>
<?xml version="1.0" encoding="UTF-8"?> <anychart> <margin all="5" /> <gauges> <gauge> <chart_settings> <title> <text>MPH Speedometer</text> </title> <chart_background enabled="false"> <border enabled="false" /> </chart_background> </chart_settings> </gauge> </gauges> </anychart>

And here is an output we get:

Live Sample:  Sample Circular Gauge Step 7
anychart说明文档

to top

Final Mph Speedometer Gauge is Ready

Now you know almost all basic settings and configurations of the circular gauge, you can go on studying a lot of other parameters that can be changed to create a gauge that will display the data of your choice in a right way.

If you haven't studied any other articles in documentation yet we recommend you to start with the following:

  • Architecture
  • Positioning
  • Resizing
  • Visual Appearance
  • Axis

to top

Current Page Online URL: Your first circular gauge

转载于:https://www.cnblogs.com/cookie3ms/p/4199788.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/360351.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

h5 神策埋点_咕咚技术总监唐平麟:神策使我们的数据平台成本降低约 75%,迭代效率提升 2~3 倍...

在这个数据爆炸的时代&#xff0c;数据成为各行各业出奇制胜的法宝&#xff0c;运动行业也不例外&#xff0c;那么大数据对运动业有什么价值呢&#xff1f;咕咚作为智能运动的倡导者和先行者&#xff0c;致力于成为全球领先的运动大数据和服务平台&#xff0c;现已为超过 1.5 亿…

JavaFX,Jigsaw项目和JEP 253

因此&#xff0c; Java 9可能会破坏您的代码 …… 如果您的项目使用JavaFX&#xff0c;则这尤其可能&#xff0c;因为许多自定义项和自制控件都需要使用内部API。 借助Project Jigsaw&#xff0c;这些内容将无法在Java 9中访问。幸运的是&#xff0c; Oracle在几天前宣布了 JE…

微型计算机技术6,微型计算机技术课后习题6-8章答案.ppt

微型计算机技术课后习题6-8章答案MOV AL L2: MOV CX,8 L1: OUT 20H,AL CALL DELAY2S ROR AL,1 LOOP L1 JMP L2 习题:8.24 8253A-5的计数通道0连接如图习8-4所示,试回答:(1)计数通道0工作于何种方式&#xff0c;并写出工作方式名称&#xff1b;(2)写出计数通道0的计数初值(列出计…

免费的.NET混淆和反编译工具

免费的.NET代码混淆工具&#xff1a; Eazfuscator.NET http://www.foss.kharkov.ua/g1/projects/eazfuscator/dotnet/Default.aspx Skater .NET Obfuscator Freeware Light Edition http://www.rustemsoft.com/freeware_obfuscator.htm VisualStudio2010中集成的Dotfuscator…

ios 获取是否静音模式_果粉感动:部分iOS“新功能”早已被安卓玩坏

一年一度的WWDC大会如期举行&#xff0c;今年不仅展示了全新的iOS、iPadOS以及macOS。当然&#xff0c;具体更新了什么相信早已经被各大媒体报道出来&#xff0c;本文并不是重复报道&#xff0c;相反的&#xff0c;iOS经过了13代的发展&#xff0c;有开创性的动作&#xff0c;也…

怎么把桌面计算机隐藏文件,怎么隐藏桌面文件夹名称?隐藏桌面图标下的文字的详细教程...

怎么隐藏桌面文件夹名称&#xff1f;桌面图标一多就会显得很凌乱&#xff0c;特别有的软件名称很长&#xff0c;那么有没有什么方法可以让桌面看起来很清爽呢&#xff1f;当然是有&#xff0c;去掉桌面应用的名称不就简洁清爽了&#xff1f;下面就教大家不利用第三方软件的情况…

Hazelcast入门指南第7部分

这是解释如何使用Hazelcast的系列文章的续篇。 如果一个人没有阅读其他六个帖子&#xff0c;请转到目录并阅读其他帖子。 不同的地图种类 Hazelcast的MultiMap打破了以前使用java.util.Collection接口的常规方式。 实际上&#xff0c;在我看来&#xff0c;MultiMap的概念完全打…

JS将指定的时间戳转为UTC时间

Js中获取时间戳可用var dayMiliseconds parseInt(new Date().valueOf());Js的时间戳单位为毫秒&#xff08;1s 1000 ms&#xff09;,下面是一个将制定的格式转化成UTC时间的函数。 //format the date string from webservice to UTC time; function toUTCtime(dateStr) {//Da…

02365计算机软件基础,自考02365《计算机软件基础(二)》习题解答.pdf

1。互交机人了便方 &#xfffd;口接的间之统系机算计和户用为作还统系作操时同 &#xfffd;理管的源资类四等件文 &#xfffd;备设O/I &#xfffd;器储存 &#xfffd;机理处对现实 &#xfffd;源资件软 、件硬的机算计理管和制控统系作操 &#xfffd;】答解【&#xfff…

window xp系统安装php环境_Windows Server 2003及XP系统如何安装SQL Server 2000数据库?

年头年初节假日就是小编的梗&#xff0c;忙得不可开交&#xff0c;这不越冷越刮风昨天服务器又崩了&#xff0c;折腾了一天安装好Windows Server 2003和IIS(这系统是有点老了&#xff0c;主要是单位机子和各系统也有点年头了&#xff0c;没办法)&#xff0c;做好各项配置后总算…

REST服务的自动化测试

尽管我是Java和Scala开发人员&#xff0c;但我仍然对软件测试充满热情。 如果更精确-Web应用程序。 开发Web应用程序并确保应用程序具有良好的质量真的很有趣。 当我开始职业生涯时&#xff0c;最受欢迎的Web架构是MVC&#xff08;模型视图控件&#xff09;&#xff0c;并且非…

iOS 为tableview添加新的cell类

网址&#xff1a;http://www.howzhi.com/group/iosDevelop/discuss/2068转载于:https://www.cnblogs.com/liukunyang/p/3363881.html

怎么写计算机教学论文,如何写好一篇关于信息技术教育的论文

论文是一个汉语词语&#xff0c;拼音是ln wn&#xff0c;古典文学常见论文一词&#xff0c;谓交谈辞章或交流思想。当代&#xff0c;论文常用来指进行各个学术领域的研究和描述学术研究成果的文章&#xff0c;简称之为论文。今天小编给大家以信息技术教育为题的论文模板&#x…

JAXB做错了; 尝试Xembly

JAXB是一项具有10年历史的Java技术&#xff0c;它使我们能够将Java对象转换为XML文档&#xff08;编组&#xff09;并返回&#xff08;取消编组&#xff09;。 我认为这项技术基于setter和getter&#xff0c;并且通过将对象转换为被动数据结构而违反了面向对象编程的关键原理。…

rnn神经网络 层次_精讲深度学习RNN三大核心点,三分钟掌握循环神经网络

每天给小编五分钟&#xff0c;小编用自己的代码&#xff0c;让你轻松学习人工智能。本文将剖析循环神经网络(RNN)的工作原理&#xff0c;精讲循环神经网络的特点和实现方式。野蛮智能&#xff0c;小白也能看懂的人工智能。循环神经网络从何而来&#xff1f;我在我的这篇文章介绍…

我的偶像特质

1、泰国英拉&#xff1a;谦和品质&#xff0c;诚实&#xff0c;隐忍&#xff0c;有外交风范。 此前默默无闻的英拉依靠选举机器与个人魅力的完美协作&#xff0c;英拉完成了从女高管到女总理的身份飞越。 对手&#xff1a;“英拉从未利用媒体攻击商业对手&#xff0c;而是尽量避…

摆脱匿名类

我真的很喜欢编写和阅读lambda表达式-它们简洁&#xff0c;富于表现力和时尚&#xff08;来吧&#xff0c;这样就没关系了&#xff01;&#xff09;。 将此与匿名类进行比较。 这就是为什么我喜欢摆脱它们&#xff01; 在过去的几个月中&#xff0c;这种认识慢慢地实现了&…

惠普自动化测试软件官网,惠普最新测试管理工具 HP ALM 11.0 详细介绍

惠普应用生命周期管理(HPalm/" target"_blank" >ALM11)是业界首款集成的、跨技术和流程、可拓展的平台&#xff0c;使IT能够管理应用生命周期&#xff0c;并且从项目建议到运营全过程中贯穿应用交付。在拓展惠普软件应用组合(HPSoftwareApplicationsportfoli…

poj 题目分类(3)

OJ上的一些水题(可用来练手和增加自信) (poj3299,poj2159,poj2739,poj1083,poj2262,poj1503,poj3006,poj2255,poj3094) 初期: 一.基本算法: (1)枚举. (poj1753,poj2965) (2)贪心(poj1328,poj2109,poj2586) (3)递归和分治法. (4)递推. (5)构造法.(poj329…

ARM学习(24)Can的高阶认识和错误处理

笔者来聊一下CAN协议帧的认识和错误处理。 1、CAN协议帧认识 CAN 差分信号&#xff0c;是经过CAN收发器转成差分信号的&#xff0c;CAN RX和TX是逻辑电平。CAN的基础知识&#xff0c;可参考笔者这边文章&#xff1a;ARM学习&#xff08;21&#xff09;STM32 外设Can的认识与驱…