`

anychart xml文件详解

阅读更多
<!--anychart xml文件详解-->

<!--根元素-->
<anychar>
<settings>
<!--初始化的时候是否显示动画效果-->
<animation enabled="True" />
</settings>

<charts>
<!--
plot_type="CategorizedBySeriesVertical" 按series显示图形
plot_type="CategorizedVertical" 按point显示图形
plot_type="Pie" 饼图
-->
<chart plot_type="CategorizedBySeriesVertical">
<!--
enable_3d_mode  3D效果
z_aspect        3D效果的深度
default_series_type="Spline" 曲线
default_series_type="Bar" 柱型
default_series_type="StepLineForward" 方型折线图
default_series_type="Line" 折线
-->
<data_plot_settings default_series_type="Bar" enable_3d_mode="true" z_aspect="1">
<!--
point_padding  同一组内柱直接的间距
group_padding  组之间的间距
-->
<bar_series point_padding="0.2" group_padding="10">
<!--在图柱上显示的标签-->
<label_settings enabled="True"  rotation="90">
   <position  anchor="Center" halign="Center" valign="Center"/>
   <!--
{%Value} 显示值
{numDecimals:3} 小数地精确位数
   -->
   <format>{%Value}{numDecimals:3}</format>
   <font bold="False" color="White">
   <effects>
<drop_shadow enabled="True" opacity="0.5" distance="2" blur_x="1" blur_y="1"/>
</effects>
   </font>
   <background enabled="False"/>
</label_settings>
<!--鼠标停留在图上时是否显示提示信息-->
<tooltip_settings enabled="true">
<!--提示信息地格式-->
<format>Value: {%YValue}{numDecimals:2} Argument: {%Name}</format>
<!--anchor 标签的位置-->
<position anchor="CenterTop" padding="10"/>
<background>
<border color="DarkColor(Gold)" thickness="5"/>
<fill type="Solid" color="DarkColor(%Color)"/>
<effects enabled="false"/>
<inside_margin all="0"/>
</background>
<font size="8" color="DarkColor(%Color)"/>
</tooltip_settings enabled>
<bar_style>
<states>
<normal>
<border color="DarkColor(%Color)" thickness="1"/>
</normal>
<hover>
<border thickness="2"/>
</hover>
</states>
</bar_style>
</bar_series>
<!--饼图设置信息-->
<pie_series>
<tooltip_settings enabled="true">
<format>
{%Name}
Sales: ${%Value}
Percent: {%YPercentOfSeries}{numDecimals: 2}%
</format>
</tooltip_settings>

<label_settings enabled="true" mode="Outside" multi_line_align="Center">
<background enabled="false"/>
<position anchor="Center" valign="Center" halign="Center" padding="20"/>
<format>
{%Name}
${%Value} ({%YPercentOfSeries}{numDecimals:1}%)
</format>
<font bold="False"/>
</label_settings>
<connector color="Black" opacity="0.4"/>
</pie_series>
<!--折线图配置信息-->
<line_series>
<marker_settings>
<marker size="8"/>
<states>
<hover>
<marker size="12"/>
</hover>
</states>
</marker_settings>
<tooltip_settings enabled="True"/>
</line_series>
</data_plot_settings>

<!--图表设置信息-->
<chart_settings>
<!--图表标题-->
<title enabled="true">
<text>人员信息统计</text>
</title>
<!--图例显示设置-->
<legend enabled="true" position="left" align="Near" ignore_auto_item="true">
<format>{%Icon} {%Name} ({%Value})</format>
<template></template>
<title enabled="true">
<text>图列</text>
</title>
<columns_separator enabled="false"/>
<background>
<inside_margin left="10" right="10"/>
</background>
<items>
<item source="Points"/>
</items>
</legend>
<axes>
<!--position="Opposite"    x轴在上面显示-->
<x_axis position="Opposite">
<!--y轴标题-->
<title enabled="true">
<text>Arguments</text>
</title>
</x_axis>
<!--position="Opposite"    y轴在右边显示-->
<y_axis position="Opposite">
<!--y轴标题-->
<title enabled="true">
<text>Values</text>
</title>
<!--
inverted
true 0点在上面
false 0点在下面
-->
<scale inverted="false"/>
<!--
0刻度线设置
color 颜色
opacity 透明度
-->
<zero_line color="Red" opacity="0.5"/>
<!--坐标轴显示的标签-->
<labels>
<!--
标签格式:
{%Value} 坐标值
{numDecimals:2} 精确地小数位数
-->
<format>{%Value}{numDecimals:2}</format>
</labels>
<!--
inverted true:y轴0坐标在上面
false:y轴0坐标在下面
minimum 起始坐标
-->
<scale inverted="true" minimum="0"/>
</y_axis>
</axes>
<data_plot_background>
<effects enabled="false"/>
</data_plot_background>
</chart_settings>

<data>
<!--series  系列-->
<series name="伊犁">
<point name="第一季度" y="22.14"/>
<point name="第二季度" y="21.61"/>
<point name="第三季度" y="26.21"/>
<point name="第四季度" y="32.98"/>
</series>

<series name="和田">
<point name="第一季度" y="9.54"/>
<point name="第二季度" y="20.19"/>
<point name="第三季度" y="15.67"/>
<point name="第四季度" y="12.43"/>
</series>

<series name="乌鲁木齐">
<point name="第一季度" y="43.76"/>
<point name="第二季度" y="61.34"/>
<point name="第三季度" y="34.17"/>
<point name="第四季度" y="45.72"/>
</series>

<series name="阿勒泰">
<point name="第一季度" y="12.56"/>
<point name="第二季度" y="8.12"/>
<point name="第三季度" y="5.32"/>
<point name="第四季度" y="33.08"/>
</series>
</data>
</chart>
<charts>
</anychar>
分享到:
评论

相关推荐

    史上最全的maven的pom.xml文件详解

    史上最全的Maven的Pom.xml文件详解 Maven是Java领域最流行的构建工具之一,其核心配置文件是Pom.xml。在Pom.xml文件中,我们可以定义项目的基本信息、依赖关系、构建过程、测试环境等。下面,我们将详细解析Pom.xml...

    web.xml配置详解

    web.xml 配置详解是指在 Java Web 应用程序中使用的部署描述符配置文件。它是一个 XML 文件,包含了很多描述 servlet/JSP 应用的各个方面的元素,如 servlet 注册、servlet 映射以及监听器注册。 在 web.xml 文件中...

    application.xml配置文件详解

    application.xml配置文件详解 application.xml配置文件详解 application.xml配置文件详解

    weblogic.xml配置详解

    ### WebLogic.xml配置详解 #### 一、概述 `weblogic.xml` 文件是 WebLogic Server 应用服务器中专门用于自定义和配置部署在该服务器上的 Web 应用程序的一个重要配置文件。它允许开发人员和系统管理员针对 ...

    ant build.xml文件详解

    Ant build.xml 文件详解 Ant 是一个项目管理工具,相比make命令,gnumake和nmake等编译工具,Ant克服了这些工具的缺陷。Ant 的优点包括跨平台性、操作简单、易于集成到开发环境中。Ant 的构建文件是 XML 格式的文件...

    ANT-build.xml文件详解

    ### ANT-build.xml 文件详解 #### Ant 的概念及与 Make 的比较 Ant 是一款开源的 Java 构建工具,它的设计理念主要是解决 Make 工具在跨平台应用中存在的问题。对于熟悉 Linux 的用户而言,Make 命令作为一种项目...

    部署描述文件web.xml配置详解.doc

    ### 部署描述文件web.xml配置详解 #### 一、引言 在Java Web开发中,`web.xml`是一个非常重要的配置文件,它作为Web应用程序的部署描述符,负责管理与应用程序相关的各项配置信息。本文将深入解析`web.xml`的各项...

    struts-config.xml 文件详解

    struts-config.xml 文件详解 以下是一份完整的struts-config.xml文件,配置元素的说明详见注释.

    web.xml配置详解, web.xml web.xml 配置实例

    Web.xml 配置详解 Web.xml 是一个部署描述符文件,用于描述 Web 应用程序的配置信息。该文件是基于 XML 语法的,所有的元素都是大小写敏感的。下面是 web.xml 配置文件的详细解释: 定义头和根元素 在 web.xml ...

    ANT-build-xml文件详解

    【ANT-build.xml文件详解】 ANT-build.xml文件是Apache Ant构建工具的核心配置文件,它使用XML格式定义了构建项目的所有步骤和任务。Ant是Java社区广泛使用的自动化构建工具,它的主要优势在于跨平台性、易用性和...

    maven pom.xml 详解

    maven 中 pom.xml 文件详解

    Android反编译.xml文件详解

    资源所需工具及操作步骤齐备,直接按文档操作即可:1、aapt.exe,2、apktool.bat,3、apktool.jar,4、framework-res.apk,5、Android反编译.xml文件详解及操作步骤。

    Tomcat web.xml 文件详解

    ### Tomcat web.xml 文件详解 #### 一、引言 `web.xml` 是部署在Tomcat服务器上的Web应用程序的核心配置文件之一。对于初次接触Tomcat部署的开发者而言,理解和掌握`web.xml`的配置至关重要。本文旨在深入解析`web...

    java web项目 web.xml配置详解

    一、web.xml文件概述 `web.xml`被称为部署描述符(Deployment Descriptor),它位于Java Web项目的`WEB-INF`目录下。这个文件告诉应用服务器如何启动、运行以及管理Web应用程序。在Servlet 3.0及其以上版本,部分...

    web.xml文件详解

    【web.xml文件详解】 web.xml文件是Java Web应用程序的核心配置文件,它被称为部署描述符,因为其中包含了关于应用如何在服务器上部署和运行的关键信息。这个文件是一个遵循特定XML结构的文档,它允许开发者详细地...

    【ASP.NET编程知识】.net读写xml文档详解.docx

    在ASP.NET编程中,处理XML文档是一项常见的任务。本文将详细讲解.NET框架中涉及XML文档读写的核心类和方法,以及如何利用它们来实现XML文档的创建和操作。 首先,我们关注.NET框架中的几个关键命名空间: 1. **...

    xml文件操作详解crud操作

    在IT行业中,XML文件的操作是必不可少的技能,特别是CRUD(Create, Read, Update, Delete)操作,即创建、读取、更新和删除XML文件中的数据。下面将详细讲解XML文件的CRUD操作。 1. **创建(Create)** 创建XML...

    web.xml配置详解.pdf

    web.xml 各属性作用描述 Web.xml 常用元素 ‐app&gt; ‐name&gt;‐name&gt;定义了WEB 应用的名字 &lt;description&gt;&lt;/description&gt; 声明WEB 应用的描述信息

Global site tag (gtag.js) - Google Analytics