diff --git a/pom.xml b/pom.xml
index f99239f5..38949c1d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
com.github.abel533
ECharts
- 3.0.0.6
+ 3.0.0.7
jar
ECharts
@@ -85,14 +85,6 @@
-
-
- src/test/resources
-
-
- src/test/java
-
-
org.apache.maven.plugins
@@ -118,63 +110,15 @@
1.6
-
-
- org.apache.maven.plugins
- maven-source-plugin
- 2.2.1
-
-
- package
-
- jar-no-fork
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-javadoc-plugin
- 2.9.1
-
-
- package
-
- jar
-
-
- -Xdoclint:none
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
-
- sign-artifacts
- verify
-
- sign
-
-
-
-
-
-
- oss
- https://oss.sonatype.org/content/repositories/snapshots/
-
-
- oss
- https://oss.sonatype.org/service/local/staging/deploy/maven2/
-
-
+
+
+ cbi-repo
+ cbi-repo
+ http://101.200.45.222:8000/repository/cbi-repo/
+
+
\ No newline at end of file
diff --git a/src/main/java/com/github/abel533/echarts/code/SeriesType.java b/src/main/java/com/github/abel533/echarts/code/SeriesType.java
index ad46c79c..45833c5d 100644
--- a/src/main/java/com/github/abel533/echarts/code/SeriesType.java
+++ b/src/main/java/com/github/abel533/echarts/code/SeriesType.java
@@ -54,4 +54,5 @@ public enum SeriesType {
boxplot,//中文可以称为『箱形图』、『盒须图』、『盒式图』、『盒状图』、『箱线图』++++++++++++++++++++++++
parallel,//平行坐标系++++++++++++++++++++++
sankey,//桑基图,是一种特殊的流图, 它主要用来表示原材料、能量等如何从初始形式经过中间过程的加工、转化到达最终形式++++++++++++++
+ sunburst,//旭日图
}
diff --git a/src/main/java/com/github/abel533/echarts/series/SeriesFactory.java b/src/main/java/com/github/abel533/echarts/series/SeriesFactory.java
index 6fb70db4..49086231 100644
--- a/src/main/java/com/github/abel533/echarts/series/SeriesFactory.java
+++ b/src/main/java/com/github/abel533/echarts/series/SeriesFactory.java
@@ -143,6 +143,9 @@ public static Sankey newSankey() {
public static Sankey newSankey(String name) {
return new Sankey(name);
}
+ public static Sunburst newSunburst() {
+ return new Sunburst();
+ }
}
diff --git a/src/main/java/com/github/abel533/echarts/series/Sunburst.java b/src/main/java/com/github/abel533/echarts/series/Sunburst.java
new file mode 100644
index 00000000..73414517
--- /dev/null
+++ b/src/main/java/com/github/abel533/echarts/series/Sunburst.java
@@ -0,0 +1,128 @@
+/*
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2014-2015 abel533@gmail.com
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+package com.github.abel533.echarts.series;
+
+import com.github.abel533.echarts.code.RoseType;
+import com.github.abel533.echarts.code.SelectedMode;
+import com.github.abel533.echarts.code.SeriesType;
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ * 旭日图
+ *
+ * @author miguanxiong
+ */
+@Getter
+@Setter
+public class Sunburst extends Series {
+ /**
+ * 圆心坐标,支持绝对值(px)和百分比,百分比计算min(width, height) * 50%
+ */
+ private Object[] center;
+ /**
+ * 半径,支持绝对值(px)和百分比,百分比计算比,min(width, height) / 2 * 75%,
+ * 传数组实现环形图,[内半径,外半径]
+ */
+ private Object radius;
+
+ /**
+ * 构造函数
+ */
+ public Sunburst() {
+ this.type(SeriesType.sunburst);
+ }
+
+ /**
+ * 构造函数,参数:name
+ *
+ * @param name
+ */
+ public Sunburst(String name) {
+ super(name);
+ this.type(SeriesType.pie);
+ }
+
+ /**
+ * 获取center值
+ */
+ public Object[] center() {
+ return this.center;
+ }
+
+ /**
+ * 设置center值
+ *
+ * @param center
+ */
+ public Sunburst center(Object[] center) {
+ this.center = center;
+ return this;
+ }
+
+ /**
+ * 获取radius值
+ */
+ public Object radius() {
+ return this.radius;
+ }
+
+ /**
+ * 圆心坐标,支持绝对值(px)和百分比,百分比计算min(width, height) * 50%
+ *
+ * @param width
+ * @param height
+ * @return
+ */
+ public Sunburst center(Object width, Object height) {
+ this.center = new Object[]{width, height};
+ return this;
+ }
+
+ /**
+ * 半径,支持绝对值(px)和百分比,百分比计算比,min(width, height) / 2 * 75%,
+ * 传数组实现环形图,[内半径,外半径]
+ *
+ * @param radius
+ * @return
+ */
+ public Sunburst radius(Object radius) {
+ this.radius = radius;
+ return this;
+ }
+
+ /**
+ * 半径,支持绝对值(px)和百分比,百分比计算比,min(width, height) / 2 * 75%,
+ * 传数组实现环形图,[内半径,外半径]
+ *
+ * @param width 内半径
+ * @param height 外半径
+ * @return
+ */
+ public Sunburst radius(Object width, Object height) {
+ radius = new Object[]{width, height};
+ return this;
+ }
+}
diff --git a/src/test/java/com/github/abel533/echarts/FromJsonTest.java b/src/test/java/com/github/abel533/echarts/FromJsonTest.java
deleted file mode 100644
index 4f9edd14..00000000
--- a/src/test/java/com/github/abel533/echarts/FromJsonTest.java
+++ /dev/null
@@ -1,116 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts;
-
-import com.github.abel533.echarts.json.GsonUtil;
-import com.github.abel533.echarts.series.Bar;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class FromJsonTest {
-
- @Test
- public void testFromJson() {
- String json = "{\n" +
- " tooltip : {\n" +
- " trigger: 'axis',\n" +
- " axisPointer : { // 坐标轴指示器,坐标轴触发有效\n" +
- " type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'\n" +
- " }\n" +
- " },\n" +
- " legend: {\n" +
- " data:['利润', '支出', '收入']\n" +
- " },\n" +
- " toolbox: {\n" +
- " show : true,\n" +
- " feature : {\n" +
- " mark : {show: true},\n" +
- " dataView : {show: true, readOnly: false},\n" +
- " magicType : {show: true, type: ['line', 'bar']},\n" +
- " restore : {show: true},\n" +
- " saveAsImage : {show: true}\n" +
- " }\n" +
- " },\n" +
- " calculable : true,\n" +
- " xAxis : [\n" +
- " {\n" +
- " type : 'value'\n" +
- " }\n" +
- " ],\n" +
- " yAxis : [\n" +
- " {\n" +
- " type : 'category',\n" +
- " axisTick : {show: false},\n" +
- " data : ['周一','周二','周三','周四','周五','周六','周日']\n" +
- " }\n" +
- " ],\n" +
- " series : [\n" +
- " {\n" +
- " name:'利润',\n" +
- " type:'bar',\n" +
- " itemStyle : { normal: {label : {show: true, position: 'inside'}}},\n" +
- " data:[200, 170, 240, 244, 200, 220, 210]\n" +
- " },\n" +
- " {\n" +
- " name:'收入',\n" +
- " type:'bar',\n" +
- " stack: '总量',\n" +
- " barWidth : 5,\n" +
- " itemStyle: {normal: {\n" +
- " label : {show: true}\n" +
- " }},\n" +
- " data:[320, 302, 341, 374, 390, 450, 420]\n" +
- " },\n" +
- " {\n" +
- " name:'支出',\n" +
- " type:'bar',\n" +
- " stack: '总量',\n" +
- " itemStyle: {normal: {\n" +
- " label : {show: true, position: 'left'}\n" +
- " }},\n" +
- " data:[-120, -132, -101, -134, -190, -230, -210]\n" +
- " }\n" +
- " ]\n" +
- "}";
-
- EnhancedOption option = GsonUtil.fromJSON(json, EnhancedOption.class);
- //增加一些内容
- option.legend("测试");
- Bar bar = new Bar();
- bar.name("测试").stack("总量").data(142, 123, 65, 441, 341, 467, 90).itemStyle().normal().label().show(true);
- option.series(bar);
- option.view();
- }
-
- @Test
- public void testAxisFromJson() {
- String json = "{\"xAxis\": [{\"splitNumber\":10, \"type\": \"time\"}]}";
- EnhancedOption option = GsonUtil.fromJSON(json, EnhancedOption.class);
- System.out.println(option);
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/Generator.java b/src/test/java/com/github/abel533/echarts/Generator.java
deleted file mode 100644
index 4ac23fc5..00000000
--- a/src/test/java/com/github/abel533/echarts/Generator.java
+++ /dev/null
@@ -1,84 +0,0 @@
-package com.github.abel533.echarts;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * @author liuzh_3nofxnp
- * @since 2016-02-28 09:58
- */
-public class Generator {
- public static void main(String[] args) {
- String _lines = "private TextStyle textStyle;";
- String _type = "DataZoom";
-// simple(_type, _lines);
- simpleNew(_type, _lines);
- }
-
- /**
- * 最简单的形式
- *
- * @param _type
- * @param _lines
- */
- public static void simple(String _type, String _lines) {
- String _this = "\treturn this;";
- if (_type.equals("T")) {
- _this = "\treturn (T) this;";
- }
- String[] lines = lines(_lines);
- for (String line : lines) {
- String[] ls = line.split(" ");
- System.out.println("public " + ls[1] + " " + ls[2] + "(){");
- System.out.println("\treturn this." + ls[2] + ";");
- System.out.println("}\n");
- System.out.println("public " + _type + " " + ls[2] + "(" + ls[1] + " " + ls[2] + "){");
- System.out.println("\tthis." + ls[2] + " = " + ls[2] + ";");
- System.out.println(_this);
- System.out.println("}\n");
- }
- }
-
- /**
- * 最简单的形式
- *
- * @param _type
- * @param _lines
- */
- public static void simpleNew(String _type, String _lines) {
- String _this = "\treturn this;";
- if (_type.equals("T")) {
- _this = "\treturn (T) this;";
- }
- String[] lines = lines(_lines);
- for (String line : lines) {
- String[] ls = line.split(" ");
- System.out.println("public " + ls[1] + " " + ls[2] + "(){");
- System.out.println("\tif(this." + ls[2] + " == null){");
- System.out.println("\t\tthis." + ls[2] + "= new " + ls[1] + "();");
- System.out.println("\t}");
- System.out.println("\treturn this." + ls[2] + ";");
- System.out.println("}\n");
- System.out.println("public " + _type + " " + ls[2] + "(" + ls[1] + " " + ls[2] + "){");
- System.out.println("\tthis." + ls[2] + " = " + ls[2] + ";");
- System.out.println(_this);
- System.out.println("}\n");
- }
- }
-
- public static String[] lines(String _lines) {
- List lineList = new ArrayList();
- String[] lines = _lines.split("\n");
- for (String line : lines) {
- line = line.trim();
- if (line.length() == 0) {
- continue;
- }
- if (line.endsWith(";")) {
- line = line.substring(0, line.length() - 1);
- }
- lineList.add(line);
- }
- return lineList.toArray(new String[]{});
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/OptionTest.java b/src/test/java/com/github/abel533/echarts/OptionTest.java
deleted file mode 100644
index bd25734d..00000000
--- a/src/test/java/com/github/abel533/echarts/OptionTest.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.LegendType;
-import com.github.abel533.echarts.code.MarkType;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.data.LineData;
-import com.github.abel533.echarts.series.Line;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * Description: OptionTest
- *
- * @author liuzh
- * @since liuzh(2014-08-26 14:08)
- */
-public class OptionTest {
-
- @Test
- public void basicOption() {
- EnhancedOption option = new EnhancedOption();
- option.legend().padding(5).itemGap(10).type(LegendType.scroll).data("ios7", "android4");
- option.toolbox().show(true).feature(Tool.dataView, Tool.saveAsImage, Tool.dataZoom, Tool.magicType);
- option.tooltip().trigger(Trigger.item);
- option.xAxis(new CategoryAxis().data("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"));
- option.yAxis(new ValueAxis().boundaryGap(new Double[]{0.1, 0.1}).splitNumber(10));
-
- Line line = new Line();
- line.name("ios7").data(112, 23, 45, 56, 233, 343, 454, 89, 343, 123, 45, 123).markLine().data(new LineData().type(MarkType.average).name("ios7"));
- option.series(line);
-
- line = new Line();
- line.name("android4").data(45, 123, 145, 526, 233, 343, 44, 829, 33, 123, 45, 13).itemStyle().normal().label().show(true);
- option.series(line);
-
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/TestConfig.java b/src/test/java/com/github/abel533/echarts/TestConfig.java
deleted file mode 100644
index 0932d36b..00000000
--- a/src/test/java/com/github/abel533/echarts/TestConfig.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts;
-
-/**
- * @author liuzh
- */
-public interface TestConfig {
- /**
- * 测试文件生成的目录
- */
- String EXPORT_PATH = "/tmp/echarts/";
-
- /**
- * 通过view控制所有测试是否打开浏览器
- */
- Boolean VIEW = true;
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest1.java b/src/test/java/com/github/abel533/echarts/samples/bar/BarTest1.java
deleted file mode 100644
index 5eed49e8..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest1.java
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.bar;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.Magic;
-import com.github.abel533.echarts.code.MarkType;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.data.PointData;
-import com.github.abel533.echarts.feature.MagicType;
-import com.github.abel533.echarts.series.Bar;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-import java.util.Arrays;
-import java.util.List;
-
-/**
- * @author liuzh
- */
-public class BarTest1 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/bar1.html
- EnhancedOption option = new EnhancedOption();
- option.title().text("某地区蒸发量和降水量").subtext("纯属虚构");
- option.tooltip().trigger(Trigger.axis);
- option.legend("蒸发量", "降水量");
- option.toolbox().show(true).feature(Tool.mark, Tool.dataView, new MagicType(Magic.line, Magic.bar).show(true), Tool.restore, Tool.saveAsImage);
- option.calculable(true);
- option.xAxis(new CategoryAxis().data("1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"));
- option.yAxis(new ValueAxis());
-
- Bar bar = new Bar("蒸发量");
- bar.data(2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3);
- bar.markPoint().data(new PointData().type(MarkType.max).name("最大值"), new PointData().type(MarkType.min).name("最小值"));
- bar.markLine().data(new PointData().type(MarkType.average).name("平均值"));
-
- Bar bar2 = new Bar("降水量");
- List list = Arrays.asList(2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3);
- bar2.data(list);
- bar2.markPoint().data(new PointData("年最高", 182.2).xAxis(7).yAxis(183).symbolSize(18), new PointData("年最低", 2.3).xAxis(11).yAxis(3));
- bar2.markLine().data(new PointData().type(MarkType.average).name("平均值"));
-
- option.series(bar, bar2);
- option.exportToHtml("bar1.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest12.java b/src/test/java/com/github/abel533/echarts/samples/bar/BarTest12.java
deleted file mode 100644
index 42a4d2a5..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest12.java
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.bar;
-
-import com.github.abel533.echarts.axis.*;
-import com.github.abel533.echarts.code.Magic;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.feature.MagicType;
-import com.github.abel533.echarts.series.Bar;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class BarTest12 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/bar12.html
- EnhancedOption option = new EnhancedOption();
- option.title("ECharts2 vs ECharts1", "Chrome下测试数据");
- option.tooltip(Trigger.axis);
- option.legend(
- "ECharts1 - 2k数据", "ECharts1 - 2w数据", "ECharts1 - 20w数据", "",
- "ECharts2 - 2k数据", "ECharts2 - 2w数据", "ECharts2 - 20w数据");
- option.toolbox().show(true)
- .feature(
- Tool.mark, Tool.dataView,
- new MagicType(Magic.line, Magic.bar),
- Tool.restore, Tool.saveAsImage);
- option.calculable(true);
- option.grid().y(70).y2(30).x2(20);
- option.xAxis(
- new CategoryAxis().data("Line", "Bar", "Scatter", "K", "Map"),
- new CategoryAxis()
- .axisLine(new AxisLine().show(false))
- .axisTick(new AxisTick().show(false))
- .axisLabel(new AxisLabel().show(false))
- .splitArea(new SplitArea().show(false))
- .axisLine(new AxisLine().show(false))
- .data("Line", "Bar", "Scatter", "K", "Map")
- );
- option.yAxis(new ValueAxis().axisLabel(new AxisLabel().formatter("{value} ms")));
-
- Bar b1 = new Bar("ECharts2 - 2k数据");
- b1.itemStyle().normal().color("rgba(193,35,43,1)").label().show(true);
- b1.data(40, 155, 95, 75, 0);
-
- Bar b2 = new Bar("ECharts2 - 2w数据");
- b2.itemStyle().normal().color("rgba(181,195,52,1)").label().show(true).textStyle().color("#27727B");
- b2.data(100, 200, 105, 100, 156);
-
- Bar b3 = new Bar("ECharts2 - 20w数据");
- b3.itemStyle().normal().color("rgba(252,206,16,1)").label().show(true).textStyle().color("#E87C25");
- b3.data(906, 911, 908, 778, 0);
-
- Bar b4 = new Bar("ECharts1 - 2k数据");
- b4.itemStyle().normal().color("rgba(193,35,43,0.5)").label().show(true).formatter("function(a,b,c){return c>0 ? (c +'\n'):'';}");
- b4.data(96, 224, 164, 124, 0).xAxisIndex(1);
-
- Bar b5 = new Bar("ECharts1 - 2w数据");
- b5.itemStyle().normal().color("rgba(181,195,52,0.5)").label().show(true);
- b5.data(491, 2035, 389, 955, 347).xAxisIndex(1);
-
- Bar b6 = new Bar("ECharts1 - 20w数据");
- b6.itemStyle().normal().color("rgba(252,206,16,0.5)").label().show(true).formatter("function(a,b,c){return c>0 ? (c +'+'):'';}");
- b6.data(3000, 3000, 2817, 3000, 0, 1242).xAxisIndex(1);
-
- option.series(b1, b2, b3, b4, b5, b6);
- option.exportToHtml("bar12.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest14.java b/src/test/java/com/github/abel533/echarts/samples/bar/BarTest14.java
deleted file mode 100644
index a41b4a74..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest14.java
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.bar;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.*;
-import com.github.abel533.echarts.data.PointData;
-import com.github.abel533.echarts.feature.MagicType;
-import com.github.abel533.echarts.series.Bar;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-import java.util.Arrays;
-import java.util.List;
-
-/**
- * @author liuzh
- */
-public class BarTest14 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/echarts2/doc/example/bar14.html
- EnhancedOption option = new EnhancedOption();
- option.title().text("ECharts例子个数统计").subtext("Rainbow bar example")
- .link("http://echarts.baidu.com/doc/example.html").x(X.center);
- option.tooltip().trigger(Trigger.item);
- option.calculable(true);
- option.grid().borderWidth(0).y(80).y2(60);
- option.toolbox().show(true).feature(Tool.mark, Tool.dataView, new MagicType(Magic.line, Magic.bar).show(true), Tool.restore, Tool.saveAsImage);
- option.xAxis(new CategoryAxis().data("Line", "Bar", "Scatter", "K", "Pie", "Radar", "Chord", "Force", "Map", "Gauge", "Funnel"));
- option.yAxis(new ValueAxis().show(false));
-
- Bar bar = new Bar("ECharts例子个数统计");
- bar.itemStyle().normal().color("function(params) {" +
- " var colorList = [" +
- " '#C1232B','#B5C334','#FCCE10','#E87C25','#27727B'," +
- " '#FE8463','#9BCA63','#FAD860','#F3A43B','#60C0DD'," +
- " '#D7504B','#C6E579','#F4E001','#F0805A','#26C0C0'" +
- " ];" +
- " return colorList[params.dataIndex]" +
- " }")
- .label().show(true).position(Position.top).formatter("{b}\n{c}");
- bar.data(12,21,10,4,12,5,6,5,25,23,7);
-
- option.series(bar);
- option.exportToHtml("bar14.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest4.java b/src/test/java/com/github/abel533/echarts/samples/bar/BarTest4.java
deleted file mode 100644
index 5ba3f48a..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/bar/BarTest4.java
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.bar;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.Magic;
-import com.github.abel533.echarts.code.PointerType;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.feature.MagicType;
-import com.github.abel533.echarts.series.Bar;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class BarTest4 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/bar4.html
- EnhancedOption option = new EnhancedOption();
- option.tooltip().trigger(Trigger.axis).axisPointer().type(PointerType.shadow);
- option.legend("直接访问", "邮件营销", "联盟广告", "视频广告", "搜索引擎");
- option.toolbox().show(true).feature(Tool.mark, Tool.dataView, new MagicType(Magic.line, Magic.bar).show(true), Tool.restore, Tool.saveAsImage);
- option.calculable(true);
- option.yAxis(new CategoryAxis().data("周一", "周二", "周三", "周四", "周五", "周六", "周日"));
- option.xAxis(new ValueAxis());
-
- Bar bar = new Bar("直接访问");
- bar.stack("总量");
- bar.itemStyle().normal().label().show(true).position("insideRight");
- bar.data(320, 302, 301, 334, 390, 330, 320);
-
- Bar bar2 = new Bar("邮件营销");
- bar2.stack("总量");
- bar2.itemStyle().normal().label().show(true).position("insideRight");
- bar2.data(320, 302, 301, 334, 390, 330, 320);
-
- Bar bar3 = new Bar("联盟广告");
- bar3.stack("总量");
- bar3.itemStyle().normal().label().show(true).position("insideRight");
- bar3.data(120, 132, 101, 134, 90, 230, 210);
-
- Bar bar4 = new Bar("视频广告");
- bar4.stack("总量");
- bar4.itemStyle().normal().label().show(true).position("insideRight");
- bar4.data(150, 212, 201, 154, 190, 330, 410);
-
- Bar bar5 = new Bar("搜索引擎");
- bar5.stack("总量");
- bar5.itemStyle().normal().label().show(true).position("insideRight");
- bar5.data(820, 832, 901, 934, 1290, 1330, 1320);
-
- option.series(bar, bar2, bar3, bar4, bar5);
- option.exportToHtml("bar4.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/funnel/FunnelTest.java b/src/test/java/com/github/abel533/echarts/samples/funnel/FunnelTest.java
deleted file mode 100644
index 835c9f32..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/funnel/FunnelTest.java
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.funnel;
-
-import com.github.abel533.echarts.Label;
-import com.github.abel533.echarts.LabelLine;
-import com.github.abel533.echarts.code.*;
-import com.github.abel533.echarts.data.Data;
-import com.github.abel533.echarts.series.Funnel;
-import com.github.abel533.echarts.style.LineStyle;
-import com.github.abel533.echarts.style.TextStyle;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class FunnelTest {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/funnel.html
- EnhancedOption option = new EnhancedOption();
- option.title().text("漏斗图").subtext("纯属虚构");
- option.tooltip().trigger(Trigger.item).formatter("{a}
{b} : {c}%");
- option.toolbox().show(true).feature(Tool.mark, Tool.dataView, Tool.restore, Tool.saveAsImage);
- option.legend("展现", "点击", "访问", "咨询", "订单");
- option.calculable(true);
-
- Funnel funnel = new Funnel("漏斗图");
- funnel.x("10%").y(60).width("80%").
- min(0).max(100).
- minSize("0%").maxSize("100%").
- sort(Sort.descending).
- gap(10);
- funnel.itemStyle().normal().borderColor("#fff").borderWidth(1).
- label(new Label().show(true).position(Position.inside)).
- labelLine(new LabelLine().show(false).length(10).lineStyle(new LineStyle().width(1).type(LineType.solid)));
- funnel.itemStyle().emphasis().borderColor("red").borderWidth(5).
- label(new Label().show(true).formatter("{b}:{c}%").textStyle(new TextStyle().fontSize(20))).
- labelLine(new LabelLine().show(true));
-
- funnel.data(new Data().value(60).name("访问"),
- new Data().value(40).name("咨询"),
- new Data().value(20).name("订单"),
- new Data().value(80).name("点击"),
- new Data().value(100).name("展现")
- );
-
- option.series(funnel);
- option.exportToHtml("funnel.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/funnel/FunnelTest2.java b/src/test/java/com/github/abel533/echarts/samples/funnel/FunnelTest2.java
deleted file mode 100644
index 38485e6f..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/funnel/FunnelTest2.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.funnel;
-
-import com.github.abel533.echarts.Label;
-import com.github.abel533.echarts.LabelLine;
-import com.github.abel533.echarts.code.Position;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.data.Data;
-import com.github.abel533.echarts.series.Funnel;
-import com.github.abel533.echarts.style.TextStyle;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class FunnelTest2 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/funnel2.html
- EnhancedOption option = new EnhancedOption();
- option.color("rgba(255, 69, 0, 0.5)",
- "rgba(255, 150, 0, 0.5)",
- "rgba(255, 200, 0, 0.5)",
- "rgba(155, 200, 50, 0.5)",
- "rgba(55, 200, 100, 0.5)");
- option.title().text("漏斗图").subtext("纯属虚构");
- option.tooltip().trigger(Trigger.item).formatter("{a}
{b} : {c}%");
- option.toolbox().show(true).feature(Tool.mark, Tool.dataView, Tool.restore, Tool.saveAsImage);
- option.legend("展现", "点击", "访问", "咨询", "订单");
- option.calculable(true);
-
- Funnel funnel = new Funnel("预期");
- funnel.x("10%").y(60).width("80%");
- funnel.itemStyle().normal().label(new Label().formatter("{b}预期")).
- labelLine(new LabelLine().show(false));
- funnel.itemStyle().emphasis().label(new Label().formatter("{b}预期 : {c}%").position(Position.inside)).
- labelLine(new LabelLine().show(true));
-
- funnel.data(new Data().value(60).name("访问"),
- new Data().value(40).name("咨询"),
- new Data().value(20).name("订单"),
- new Data().value(80).name("点击"),
- new Data().value(100).name("展现")
- );
-
- Funnel funnel2 = new Funnel("实际");
- funnel2.x("10%").y(60).width("80%").maxSize("80%");
- funnel2.itemStyle().normal().label(new Label().formatter("{c}%").position(Position.inside).textStyle(new TextStyle().color("#fff"))).
- borderColor("#fff").borderWidth(2);
- funnel2.itemStyle().emphasis().label(new Label().formatter("{b}实际 : {c}%").position(Position.inside)).
- labelLine(new LabelLine().show(true));
-
- funnel2.data(new Data().value(30).name("访问"),
- new Data().value(10).name("咨询"),
- new Data().value(5).name("订单"),
- new Data().value(50).name("点击"),
- new Data().value(80).name("展现")
- );
-
- option.series(funnel,funnel2);
- option.exportToHtml("funnel2.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/gauge/GaugeTest1.java b/src/test/java/com/github/abel533/echarts/samples/gauge/GaugeTest1.java
deleted file mode 100644
index 8a9156d0..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/gauge/GaugeTest1.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.gauge;
-
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.data.Data;
-import com.github.abel533.echarts.series.Gauge;
-import com.github.abel533.echarts.series.gauge.Detail;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class GaugeTest1 {
-
- @Test
- public void test() {
- // 地址: http://echarts.baidu.com/doc/example/gauge1.html
- EnhancedOption option = new EnhancedOption();
- option.tooltip().formatter("{a}
{b} : {c}%");
- option.toolbox().show(true).feature(Tool.mark, Tool.restore, Tool.saveAsImage);
- option.series(new Gauge("业务指标").detail(new Detail().formatter("{value}%")).data(new Data("完成率", 75)));
- option.exportToHtml("guage1.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/heatmap/HeatmapTest.java b/src/test/java/com/github/abel533/echarts/samples/heatmap/HeatmapTest.java
deleted file mode 100644
index 329ed107..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/heatmap/HeatmapTest.java
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.heatmap;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.code.Orient;
-import com.github.abel533.echarts.code.Position;
-import com.github.abel533.echarts.code.X;
-import com.github.abel533.echarts.series.Heatmap;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class HeatmapTest {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/heatmap.html
- EnhancedOption option = new EnhancedOption();
- option.tooltip().position(Position.top);
- option.animation(false);
-
- CategoryAxis hoursC = new CategoryAxis();
- hoursC.data("12a", "1a", "2a", "3a", "4a", "5a", "6a",
- "7a", "8a", "9a", "10a", "11a",
- "12p", "1p", "2p", "3p", "4p", "5p",
- "6p", "7p", "8p", "9p", "10p", "11p");
-
- CategoryAxis daysC = new CategoryAxis();
- daysC.data("Saturday", "Friday", "Thursday",
- "Wednesday", "Tuesday", "Monday", "Sunday");
-
- option.xAxis(hoursC).yAxis(daysC);
- option.grid().height("50%").y("10%");
- option.visualMapNew().min(1).max(10).calculable(true).orient(Orient.horizontal).left(X.center).bottom("15%");
-
- Object[] data = new Object[]{new Integer[]{0, 0, 5}, new Integer[]{0, 1, 1}, new Integer[]{0, 2, 0}, new Integer[]{0, 3, 0}, new Integer[]{0, 4, 0},
- new Integer[]{0, 5, 0}, new Integer[]{0, 6, 0}, new Integer[]{0, 7, 0}, new Integer[]{0, 8, 0}, new Integer[]{0, 9, 0},
- new Integer[]{0, 10, 0}, new Integer[]{0, 11, 2}, new Integer[]{0, 12, 4}, new Integer[]{0, 13, 1}, new Integer[]{0, 14, 1},
- new Integer[]{0, 15, 3}, new Integer[]{0, 16, 4}, new Integer[]{0, 17, 6}, new Integer[]{0, 18, 4}, new Integer[]{0, 19, 4},
- new Integer[]{0, 20, 3}, new Integer[]{0, 21, 3}, new Integer[]{0, 22, 2}, new Integer[]{0, 23, 5}, new Integer[]{1, 0, 7},
- new Integer[]{1, 1, 0}, new Integer[]{1, 2, 0}, new Integer[]{1, 3, 0}, new Integer[]{1, 4, 0}, new Integer[]{1, 5, 0},
- new Integer[]{1, 6, 0}, new Integer[]{1, 7, 0}, new Integer[]{1, 8, 0}, new Integer[]{1, 9, 0}, new Integer[]{1, 10, 5},
- new Integer[]{1, 11, 2}, new Integer[]{1, 12, 2}, new Integer[]{1, 13, 6}, new Integer[]{1, 14, 9}, new Integer[]{1, 15, 11},
- new Integer[]{1, 16, 6}, new Integer[]{1, 17, 7}, new Integer[]{1, 18, 8}, new Integer[]{1, 19, 12}, new Integer[]{1, 20, 5},
- new Integer[]{1, 21, 5}, new Integer[]{1, 22, 7}, new Integer[]{1, 23, 2}, new Integer[]{2, 0, 1}, new Integer[]{2, 1, 1},
- new Integer[]{2, 2, 0}, new Integer[]{2, 3, 0}, new Integer[]{2, 4, 0}, new Integer[]{2, 5, 0}, new Integer[]{2, 6, 0},
- new Integer[]{2, 7, 0}, new Integer[]{2, 8, 0}, new Integer[]{2, 9, 0}, new Integer[]{2, 10, 3}, new Integer[]{2, 11, 2},
- new Integer[]{2, 12, 1}, new Integer[]{2, 13, 9}, new Integer[]{2, 14, 8}, new Integer[]{2, 15, 10}, new Integer[]{2, 16, 6},
- new Integer[]{2, 17, 5}, new Integer[]{2, 18, 5}, new Integer[]{2, 19, 5}, new Integer[]{2, 20, 7}, new Integer[]{2, 21, 4},
- new Integer[]{2, 22, 2}, new Integer[]{2, 23, 4}, new Integer[]{3, 0, 7}, new Integer[]{3, 1, 3}, new Integer[]{3, 2, 0},
- new Integer[]{3, 3, 0}, new Integer[]{3, 4, 0}, new Integer[]{3, 5, 0}, new Integer[]{3, 6, 0}, new Integer[]{3, 7, 0},
- new Integer[]{3, 8, 1}, new Integer[]{3, 9, 0}, new Integer[]{3, 10, 5}, new Integer[]{3, 11, 4}, new Integer[]{3, 12, 7},
- new Integer[]{3, 13, 14}, new Integer[]{3, 14, 13}, new Integer[]{3, 15, 12}, new Integer[]{3, 16, 9}, new Integer[]{3, 17, 5},
- new Integer[]{3, 18, 5}, new Integer[]{3, 19, 10}, new Integer[]{3, 20, 6}, new Integer[]{3, 21, 4}, new Integer[]{3, 22, 4},
- new Integer[]{3, 23, 1}, new Integer[]{4, 0, 1}, new Integer[]{4, 1, 3}, new Integer[]{4, 2, 0}, new Integer[]{4, 3, 0},
- new Integer[]{4, 4, 0}, new Integer[]{4, 5, 1}, new Integer[]{4, 6, 0}, new Integer[]{4, 7, 0}, new Integer[]{4, 8, 0},
- new Integer[]{4, 9, 2}, new Integer[]{4, 10, 4}, new Integer[]{4, 11, 4}, new Integer[]{4, 12, 2}, new Integer[]{4, 13, 4},
- new Integer[]{4, 14, 4}, new Integer[]{4, 15, 14}, new Integer[]{4, 16, 12}, new Integer[]{4, 17, 1}, new Integer[]{4, 18, 8},
- new Integer[]{4, 19, 5}, new Integer[]{4, 20, 3}, new Integer[]{4, 21, 7}, new Integer[]{4, 22, 3}, new Integer[]{4, 23, 0},
- new Integer[]{5, 0, 2}, new Integer[]{5, 1, 1}, new Integer[]{5, 2, 0}, new Integer[]{5, 3, 3}, new Integer[]{5, 4, 0},
- new Integer[]{5, 5, 0}, new Integer[]{5, 6, 0}, new Integer[]{5, 7, 0}, new Integer[]{5, 8, 2}, new Integer[]{5, 9, 0},
- new Integer[]{5, 10, 4}, new Integer[]{5, 11, 1}, new Integer[]{5, 12, 5}, new Integer[]{5, 13, 10}, new Integer[]{5, 14, 5},
- new Integer[]{5, 15, 7}, new Integer[]{5, 16, 11}, new Integer[]{5, 17, 6}, new Integer[]{5, 18, 0}, new Integer[]{5, 19, 5},
- new Integer[]{5, 20, 3}, new Integer[]{5, 21, 4}, new Integer[]{5, 22, 2}, new Integer[]{5, 23, 0}, new Integer[]{6, 0, 1},
- new Integer[]{6, 1, 0}, new Integer[]{6, 2, 0}, new Integer[]{6, 3, 0}, new Integer[]{6, 4, 0}, new Integer[]{6, 5, 0},
- new Integer[]{6, 6, 0}, new Integer[]{6, 7, 0}, new Integer[]{6, 8, 0}, new Integer[]{6, 9, 0}, new Integer[]{6, 10, 1},
- new Integer[]{6, 11, 0}, new Integer[]{6, 12, 2}, new Integer[]{6, 13, 1}, new Integer[]{6, 14, 3}, new Integer[]{6, 15, 4},
- new Integer[]{6, 16, 0}, new Integer[]{6, 17, 0}, new Integer[]{6, 18, 0}, new Integer[]{6, 19, 0}, new Integer[]{6, 20, 1},
- new Integer[]{6, 21, 2}, new Integer[]{6, 22, 2}, new Integer[]{6, 23, 6}};
-
- Object[] datas = new Object[data.length];
- for (int i = 0; i < data.length; i++) {
- Integer[] is = (Integer[]) data[i];
- datas[i] = new Integer[]{is[1], is[0], is[2]};
- }
-
- Heatmap heatmap = new Heatmap("Punch Card");
- heatmap.data(datas);
- heatmap.label().normal().show(true);
- heatmap.itemStyle().emphasis().shadowBlur(10).shadowColor("rgba(0, 0, 0, 0.5)");
-
- option.series(heatmap);
- option.exportToHtml("heatmap.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/line/LineTest.java b/src/test/java/com/github/abel533/echarts/samples/line/LineTest.java
deleted file mode 100644
index 1ba51783..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/line/LineTest.java
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.line;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.Symbol;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.data.LineData;
-import com.github.abel533.echarts.series.Line;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * Created by liuzh on 14-8-26.
- */
-public class LineTest {
-
- @Test
- public void test() {
- //例子:http://echarts.baidu.com/doc/example/line.html
- EnhancedOption option = new EnhancedOption();
- option.tooltip().trigger(Trigger.axis);
- option.legend("邮件营销", "联盟广告", "直接访问", "搜索引擎");
- option.toolbox().show(true);
- option.calculable(true);
- option.xAxis(new CategoryAxis().boundaryGap(false).data("周一", "周二", "周三", "周四", "周五", "周六", "周日"));
- option.yAxis(new ValueAxis());
- option.series(new Line().smooth(true).name("邮件营销").stack("总量").symbol(Symbol.none).data(120, 132, 301, 134, new LineData(90, Symbol.droplet, 5), 230, 210));
-
-
- //实现不了js的这个效果
- //line.itemStyle.normal.areaStyle = new AreaStyle();
- LineData lineData = new LineData(201, Symbol.star, 15);
- lineData.itemStyle().normal().label().show(true).textStyle().fontSize(20).fontFamily("微软雅黑").fontWeight("bold");
- option.series(new Line().smooth(true).name("联盟广告").stack("总量").symbol("image://http://echarts.baidu.com/doc/asset/ico/favicon.png").symbolSize(8).data(120, 82, lineData, new LineData(134, Symbol.none), 190, new LineData(230, Symbol.emptypin, 8), 110));
-
- /* line = new Line();
- line.name = "邮件营销";
- line.stack = "总量";
- line.symbol = Symbol.none;
- line.smooth = true;
- //实现不了js的这个效果
- //line.itemStyle.normal.areaStyle = new AreaStyle();
- line.addData(120, 132, 301, 134,new LineData(90,Symbol.droplet,5),230,210);
- option.series.add(line);
-
- line = new Line();
- line.name = "邮件营销";
- line.stack = "总量";
- line.symbol = Symbol.none;
- line.smooth = true;
- //实现不了js的这个效果
- //line.itemStyle.normal.areaStyle = new AreaStyle();
- line.addData(120, 132, 301, 134,new LineData(90,Symbol.droplet,5),230,210);
- option.series.add(line);*/
-
- option.exportToHtml("line.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/line/LineTest3.java b/src/test/java/com/github/abel533/echarts/samples/line/LineTest3.java
deleted file mode 100644
index 658fab9f..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/line/LineTest3.java
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.line;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.Magic;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.feature.MagicType;
-import com.github.abel533.echarts.series.Line;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class LineTest3 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/map.html
- EnhancedOption option = new EnhancedOption();
- option.title("某楼盘销售情况", "纯属虚构");
- option.tooltip().trigger(Trigger.axis);
- option.legend("意向", "预购", "成交");
- option.toolbox().show(true).feature(Tool.mark,
- Tool.dataView,
- new MagicType(Magic.line, Magic.bar, Magic.stack, Magic.tiled),
- Tool.restore,
- Tool.saveAsImage).padding(20);
- option.calculable(true);
- option.xAxis(new CategoryAxis().boundaryGap(false).data("周一", "周二", "周三", "周四", "周五", "周六", "周日"));
- option.yAxis(new ValueAxis());
-
- Line l1 = new Line("成交");
- l1.smooth(true).itemStyle().normal().areaStyle().typeDefault();
- l1.data(10, 12, 21, 54, 260, 830, 710);
-
- Line l2 = new Line("预购");
- l2.smooth(true).itemStyle().normal().areaStyle().typeDefault();
- l2.data(30, 182, 434, 791, 390, 30, 10);
-
- Line l3 = new Line("意向");
- l3.smooth(true).itemStyle().normal().areaStyle().typeDefault();
- l3.data(1320, 1132, 601, 234, 120, 90, 20);
-
- option.series(l1, l2, l3);
- option.exportToHtml("line3.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/line/LineTest5.java b/src/test/java/com/github/abel533/echarts/samples/line/LineTest5.java
deleted file mode 100644
index b7284572..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/line/LineTest5.java
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.line;
-
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.Magic;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.feature.MagicType;
-import com.github.abel533.echarts.series.Line;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-/**
- * @author liuzh
- */
-public class LineTest5 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/line5.html
- EnhancedOption option = new EnhancedOption();
- option.legend("高度(km)与气温(°C)变化关系");
-
- option.toolbox().show(true).feature(
- Tool.mark,
- Tool.dataView,
- new MagicType(Magic.line, Magic.bar),
- Tool.restore,
- Tool.saveAsImage);
-
- option.calculable(true);
- option.tooltip().trigger(Trigger.axis).formatter("Temperature :
{b}km : {c}°C");
-
- ValueAxis valueAxis = new ValueAxis();
- valueAxis.axisLabel().formatter("{value} °C");
- option.xAxis(valueAxis);
-
- CategoryAxis categoryAxis = new CategoryAxis();
- categoryAxis.axisLine().onZero(false);
- categoryAxis.axisLabel().formatter("{value} km");
- categoryAxis.boundaryGap(false);
- categoryAxis.data(0, 10, 20, 30, 40, 50, 60, 70, 80);
- option.yAxis(categoryAxis);
-
- Line line = new Line();
- line.smooth(true).name("高度(km)与气温(°C)变化关系")
- .data(15, -50, -56.5, -46.5, -22.1, -2.5, -27.7, -55.7, -76.5)
- .itemStyle().normal().lineStyle().shadowColor("rgba(0,0,0,0.4)");
- option.series(line);
- option.exportToHtml("line5.html");
- option.view();
- }
-}
diff --git a/src/test/java/com/github/abel533/echarts/samples/line/LineTest6.java b/src/test/java/com/github/abel533/echarts/samples/line/LineTest6.java
deleted file mode 100644
index 9920befd..00000000
--- a/src/test/java/com/github/abel533/echarts/samples/line/LineTest6.java
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2015 abel533@gmail.com
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
-
-package com.github.abel533.echarts.samples.line;
-
-import com.github.abel533.echarts.axis.AxisLabel;
-import com.github.abel533.echarts.axis.CategoryAxis;
-import com.github.abel533.echarts.axis.ValueAxis;
-import com.github.abel533.echarts.code.Magic;
-import com.github.abel533.echarts.code.Tool;
-import com.github.abel533.echarts.code.Trigger;
-import com.github.abel533.echarts.code.X;
-import com.github.abel533.echarts.feature.MagicType;
-import com.github.abel533.echarts.series.Line;
-import com.github.abel533.echarts.util.EnhancedOption;
-import org.junit.Test;
-
-import java.util.Arrays;
-import java.util.List;
-
-/**
- * @author liuzh
- */
-public class LineTest6 {
-
- @Test
- public void test() {
- //地址:http://echarts.baidu.com/doc/example/line6.html
- EnhancedOption option = new EnhancedOption();
- option.title().text("雨量流量关系图").subtext("数据来自西安兰特水电测控技术有限公司").x(X.center);
- option.tooltip().trigger(Trigger.axis).formatter("function(v){" +
- "return v[0][1] + '
'" +
- " + v[0][0] + ' : ' + v[0][2] + ' (m^3/s)
'" +
- "+ v[1][0] + ' : ' + -v[1][2] + ' (mm)';" +
- "}");
- option.legend("流量", "降雨量").legend().x(X.left);
-
- option.toolbox().show(true).feature(
- Tool.mark,
- Tool.dataView,
- new MagicType(Magic.line, Magic.bar),
- Tool.restore,
- Tool.saveAsImage);
-
- option.dataZoomNew().show(true).realtime(true).start(0).end(100);
-
- option.yAxis(new ValueAxis().name("流量(m^3/s)").max(500));
- option.yAxis(new ValueAxis().name("降雨量(mm)").axisLabel(new AxisLabel().formatter("function(v){return -v;}")));
-
- CategoryAxis categoryAxis = new CategoryAxis();
- categoryAxis.boundaryGap(false).axisLine().onZero(false);
- categoryAxis.data("2009/6/12 2:00", "2009/6/12 3:00", "2009/6/12 4:00", "2009/6/12 5:00", "2009/6/12 6:00", "2009/6/12 7:00", "2009/6/12 8:00", "2009/6/12 9:00", "2009/6/12 10:00", "2009/6/12 11:00", "2009/6/12 12:00", "2009/6/12 13:00", "2009/6/12 14:00", "2009/6/12 15:00", "2009/6/12 16:00", "2009/6/12 17:00", "2009/6/12 18:00", "2009/6/12 19:00", "2009/6/12 20:00", "2009/6/12 21:00", "2009/6/12 22:00", "2009/6/12 23:00",
- "2009/6/13 0:00", "2009/6/13 1:00", "2009/6/13 2:00", "2009/6/13 3:00", "2009/6/13 4:00", "2009/6/13 5:00", "2009/6/13 6:00", "2009/6/13 7:00", "2009/6/13 8:00", "2009/6/13 9:00", "2009/6/13 10:00", "2009/6/13 11:00", "2009/6/13 12:00", "2009/6/13 13:00", "2009/6/13 14:00", "2009/6/13 15:00", "2009/6/13 16:00", "2009/6/13 17:00", "2009/6/13 18:00", "2009/6/13 19:00", "2009/6/13 20:00", "2009/6/13 21:00", "2009/6/13 22:00", "2009/6/13 23:00",
- "2009/6/14 0:00", "2009/6/14 1:00", "2009/6/14 2:00", "2009/6/14 3:00", "2009/6/14 4:00", "2009/6/14 5:00", "2009/6/14 6:00", "2009/6/14 7:00", "2009/6/14 8:00", "2009/6/14 9:00", "2009/6/14 10:00", "2009/6/14 11:00", "2009/6/14 12:00", "2009/6/14 13:00", "2009/6/14 14:00", "2009/6/14 15:00", "2009/6/14 16:00", "2009/6/14 17:00", "2009/6/14 18:00", "2009/6/14 19:00", "2009/6/14 20:00", "2009/6/14 21:00", "2009/6/14 22:00", "2009/6/14 23:00",
- "2009/6/15 0:00", "2009/6/15 1:00", "2009/6/15 2:00", "2009/6/15 3:00", "2009/6/15 4:00", "2009/6/15 5:00", "2009/6/15 6:00", "2009/6/15 7:00", "2009/6/15 8:00", "2009/6/15 9:00", "2009/6/15 10:00", "2009/6/15 11:00", "2009/6/15 12:00", "2009/6/15 13:00", "2009/6/15 14:00", "2009/6/15 15:00", "2009/6/15 16:00", "2009/6/15 17:00", "2009/6/15 18:00", "2009/6/15 19:00", "2009/6/15 20:00", "2009/6/15 21:00", "2009/6/15 22:00", "2009/6/15 23:00",
- "2009/6/15 0:00", "2009/6/16 1:00", "2009/6/16 2:00", "2009/6/16 3:00", "2009/6/16 4:00", "2009/6/16 5:00", "2009/6/16 6:00", "2009/6/16 7:00", "2009/6/16 8:00", "2009/6/16 9:00", "2009/6/16 10:00", "2009/6/16 11:00", "2009/6/16 12:00", "2009/6/16 13:00", "2009/6/16 14:00", "2009/6/16 15:00", "2009/6/16 16:00", "2009/6/16 17:00", "2009/6/16 18:00", "2009/6/16 19:00", "2009/6/16 20:00", "2009/6/16 21:00", "2009/6/16 22:00", "2009/6/16 23:00",
- "2009/6/15 0:00", "2009/6/17 1:00", "2009/6/17 2:00", "2009/6/17 3:00", "2009/6/17 4:00", "2009/6/17 5:00", "2009/6/17 6:00", "2009/6/17 7:00", "2009/6/17 8:00", "2009/6/17 9:00", "2009/6/17 10:00", "2009/6/17 11:00", "2009/6/17 12:00", "2009/6/17 13:00", "2009/6/17 14:00", "2009/6/17 15:00", "2009/6/17 16:00", "2009/6/17 17:00", "2009/6/17 18:00", "2009/6/17 19:00", "2009/6/17 20:00", "2009/6/17 21:00", "2009/6/17 22:00", "2009/6/17 23:00",
- "2009/6/18 0:00", "2009/6/18 1:00", "2009/6/18 2:00", "2009/6/18 3:00", "2009/6/18 4:00", "2009/6/18 5:00", "2009/6/18 6:00", "2009/6/18 7:00", "2009/6/18 8:00", "2009/6/18 9:00", "2009/6/18 10:00", "2009/6/18 11:00", "2009/6/18 12:00", "2009/6/18 13:00", "2009/6/18 14:00", "2009/6/18 15:00", "2009/6/18 16:00", "2009/6/18 17:00", "2009/6/18 18:00", "2009/6/18 19:00", "2009/6/18 20:00", "2009/6/18 21:00", "2009/6/18 22:00", "2009/6/18 23:00",
- "2009/6/15 0:00", "2009/6/19 1:00", "2009/6/19 2:00", "2009/6/19 3:00", "2009/6/19 4:00", "2009/6/19 5:00", "2009/6/19 6:00", "2009/6/19 7:00", "2009/6/19 8:00", "2009/6/19 9:00", "2009/6/19 10:00", "2009/6/19 11:00", "2009/6/19 12:00", "2009/6/19 13:00", "2009/6/19 14:00", "2009/6/19 15:00", "2009/6/19 16:00", "2009/6/19 17:00", "2009/6/19 18:00", "2009/6/19 19:00", "2009/6/19 20:00", "2009/6/19 21:00", "2009/6/19 22:00", "2009/6/19 23:00",
- "2009/6/20 0:00", "2009/6/20 1:00", "2009/6/20 2:00", "2009/6/20 3:00", "2009/6/20 4:00", "2009/6/20 5:00", "2009/6/20 6:00", "2009/6/20 7:00", "2009/6/20 8:00", "2009/6/20 9:00", "2009/6/20 10:00", "2009/6/20 11:00", "2009/6/20 12:00", "2009/6/20 13:00", "2009/6/20 14:00", "2009/6/20 15:00", "2009/6/20 16:00", "2009/6/20 17:00", "2009/6/20 18:00", "2009/6/20 19:00", "2009/6/20 20:00", "2009/6/20 21:00", "2009/6/20 22:00", "2009/6/20 23:00",
- "2009/6/21 0:00", "2009/6/21 1:00", "2009/6/21 2:00", "2009/6/21 3:00", "2009/6/21 4:00", "2009/6/21 5:00", "2009/6/21 6:00", "2009/6/21 7:00", "2009/6/21 8:00", "2009/6/21 9:00", "2009/6/21 10:00", "2009/6/21 11:00", "2009/6/21 12:00", "2009/6/21 13:00", "2009/6/21 14:00", "2009/6/21 15:00", "2009/6/21 16:00", "2009/6/21 17:00", "2009/6/21 18:00", "2009/6/21 19:00", "2009/6/21 20:00", "2009/6/21 21:00", "2009/6/21 22:00", "2009/6/21 23:00",
- "2009/6/22 0:00", "2009/6/22 1:00", "2009/6/22 2:00", "2009/6/22 3:00", "2009/6/22 4:00", "2009/6/22 5:00", "2009/6/22 6:00", "2009/6/22 7:00", "2009/6/22 8:00", "2009/6/22 9:00", "2009/6/22 10:00", "2009/6/22 11:00", "2009/6/22 12:00", "2009/6/22 13:00", "2009/6/22 14:00", "2009/6/22 15:00", "2009/6/22 16:00", "2009/6/22 17:00", "2009/6/22 18:00", "2009/6/22 19:00", "2009/6/22 20:00", "2009/6/22 21:00", "2009/6/22 22:00", "2009/6/22 23:00",
- "2009/6/23 0:00", "2009/6/23 1:00", "2009/6/23 2:00", "2009/6/23 3:00", "2009/6/23 4:00", "2009/6/23 5:00", "2009/6/23 6:00", "2009/6/23 7:00", "2009/6/23 8:00", "2009/6/23 9:00", "2009/6/23 10:00", "2009/6/23 11:00", "2009/6/23 12:00", "2009/6/23 13:00", "2009/6/23 14:00", "2009/6/23 15:00", "2009/6/23 16:00", "2009/6/23 17:00", "2009/6/23 18:00", "2009/6/23 19:00", "2009/6/23 20:00", "2009/6/23 21:00", "2009/6/23 22:00", "2009/6/23 23:00",
- "2009/6/24 0:00", "2009/6/24 1:00", "2009/6/24 2:00", "2009/6/24 3:00", "2009/6/24 4:00", "2009/6/24 5:00", "2009/6/24 6:00", "2009/6/24 7:00", "2009/6/24 8:00", "2009/6/24 9:00", "2009/6/24 10:00", "2009/6/24 11:00", "2009/6/24 12:00", "2009/6/24 13:00", "2009/6/24 14:00", "2009/6/24 15:00", "2009/6/24 16:00", "2009/6/24 17:00", "2009/6/24 18:00", "2009/6/24 19:00", "2009/6/24 20:00", "2009/6/24 21:00", "2009/6/24 22:00", "2009/6/24 23:00",
- "2009/6/25 0:00", "2009/6/25 1:00", "2009/6/25 2:00", "2009/6/25 3:00", "2009/6/25 4:00", "2009/6/25 5:00", "2009/6/25 6:00", "2009/6/25 7:00", "2009/6/25 8:00", "2009/6/25 9:00", "2009/6/25 10:00", "2009/6/25 11:00", "2009/6/25 12:00", "2009/6/25 13:00", "2009/6/25 14:00", "2009/6/25 15:00", "2009/6/25 16:00", "2009/6/25 17:00", "2009/6/25 18:00", "2009/6/25 19:00", "2009/6/25 20:00", "2009/6/25 21:00", "2009/6/25 22:00", "2009/6/25 23:00",
- "2009/6/26 0:00", "2009/6/26 1:00", "2009/6/26 2:00", "2009/6/26 3:00", "2009/6/26 4:00", "2009/6/26 5:00", "2009/6/26 6:00", "2009/6/26 7:00", "2009/6/26 8:00", "2009/6/26 9:00", "2009/6/26 10:00", "2009/6/26 11:00", "2009/6/26 12:00", "2009/6/26 13:00", "2009/6/26 14:00", "2009/6/26 15:00", "2009/6/26 16:00", "2009/6/26 17:00", "2009/6/26 18:00", "2009/6/26 19:00", "2009/6/26 20:00", "2009/6/26 21:00", "2009/6/26 22:00", "2009/6/26 23:00",
- "2009/6/27 0:00", "2009/6/27 1:00", "2009/6/27 2:00", "2009/6/27 3:00", "2009/6/27 4:00", "2009/6/27 5:00", "2009/6/27 6:00", "2009/6/27 7:00", "2009/6/27 8:00", "2009/6/27 9:00", "2009/6/27 10:00", "2009/6/27 11:00", "2009/6/27 12:00", "2009/6/27 13:00", "2009/6/27 14:00", "2009/6/27 15:00", "2009/6/27 16:00", "2009/6/27 17:00", "2009/6/27 18:00", "2009/6/27 19:00", "2009/6/27 20:00", "2009/6/27 21:00", "2009/6/27 22:00", "2009/6/27 23:00",
- "2009/6/28 0:00", "2009/6/28 1:00", "2009/6/28 2:00", "2009/6/28 3:00", "2009/6/28 4:00", "2009/6/28 5:00", "2009/6/28 6:00", "2009/6/28 7:00", "2009/6/28 8:00", "2009/6/28 9:00", "2009/6/28 10:00", "2009/6/28 11:00", "2009/6/28 12:00", "2009/6/28 13:00", "2009/6/28 14:00", "2009/6/28 15:00", "2009/6/28 16:00", "2009/6/28 17:00", "2009/6/28 18:00", "2009/6/28 19:00", "2009/6/28 20:00", "2009/6/28 21:00", "2009/6/28 22:00", "2009/6/28 23:00",
- "2009/6/29 0:00", "2009/6/29 1:00", "2009/6/29 2:00", "2009/6/29 3:00", "2009/6/29 4:00", "2009/6/29 5:00", "2009/6/29 6:00", "2009/6/29 7:00", "2009/6/29 8:00", "2009/6/29 9:00", "2009/6/29 10:00", "2009/6/29 11:00", "2009/6/29 12:00", "2009/6/29 13:00", "2009/6/29 14:00", "2009/6/29 15:00", "2009/6/29 16:00", "2009/6/29 17:00", "2009/6/29 18:00", "2009/6/29 19:00", "2009/6/29 20:00", "2009/6/29 21:00", "2009/6/29 22:00", "2009/6/29 23:00",
- "2009/6/30 0:00", "2009/6/30 1:00", "2009/6/30 2:00", "2009/6/30 3:00", "2009/6/30 4:00", "2009/6/30 5:00", "2009/6/30 6:00", "2009/6/30 7:00", "2009/6/30 8:00", "2009/6/30 9:00", "2009/6/30 10:00", "2009/6/30 11:00", "2009/6/30 12:00", "2009/6/30 13:00", "2009/6/30 14:00", "2009/6/30 15:00", "2009/6/30 16:00", "2009/6/30 17:00", "2009/6/30 18:00", "2009/6/30 19:00", "2009/6/30 20:00", "2009/6/30 21:00", "2009/6/30 22:00", "2009/6/30 23:00",
- "2009/7/1 0:00", "2009/7/1 1:00", "2009/7/1 2:00", "2009/7/1 3:00", "2009/7/1 4:00", "2009/7/1 5:00", "2009/7/1 6:00", "2009/7/1 7:00", "2009/7/1 8:00", "2009/7/1 9:00", "2009/7/1 10:00", "2009/7/1 11:00", "2009/7/1 12:00", "2009/7/1 13:00", "2009/7/1 14:00", "2009/7/1 15:00", "2009/7/1 16:00", "2009/7/1 17:00", "2009/7/1 18:00", "2009/7/1 19:00", "2009/7/1 20:00", "2009/7/1 21:00", "2009/7/1 22:00", "2009/7/1 23:00",
- "2009/7/2 0:00", "2009/7/2 1:00", "2009/7/2 2:00", "2009/7/2 3:00", "2009/7/2 4:00", "2009/7/2 5:00", "2009/7/2 6:00", "2009/7/2 7:00", "2009/7/2 8:00", "2009/7/2 9:00", "2009/7/2 10:00", "2009/7/2 11:00", "2009/7/2 12:00", "2009/7/2 13:00", "2009/7/2 14:00", "2009/7/2 15:00", "2009/7/2 16:00", "2009/7/2 17:00", "2009/7/2 18:00", "2009/7/2 19:00", "2009/7/2 20:00", "2009/7/2 21:00", "2009/7/2 22:00", "2009/7/2 23:00",
- "2009/7/3 0:00", "2009/7/3 1:00", "2009/7/3 2:00", "2009/7/3 3:00", "2009/7/3 4:00", "2009/7/3 5:00", "2009/7/3 6:00", "2009/7/3 7:00", "2009/7/3 8:00", "2009/7/3 9:00", "2009/7/3 10:00", "2009/7/3 11:00", "2009/7/3 12:00", "2009/7/3 13:00", "2009/7/3 14:00", "2009/7/3 15:00", "2009/7/3 16:00", "2009/7/3 17:00", "2009/7/3 18:00", "2009/7/3 19:00", "2009/7/3 20:00", "2009/7/3 21:00", "2009/7/3 22:00", "2009/7/3 23:00",
- "2009/7/4 0:00", "2009/7/4 1:00", "2009/7/4 2:00", "2009/7/4 3:00", "2009/7/4 4:00", "2009/7/4 5:00", "2009/7/4 6:00", "2009/7/4 7:00", "2009/7/4 8:00", "2009/7/4 9:00", "2009/7/4 10:00", "2009/7/4 11:00", "2009/7/4 12:00", "2009/7/4 13:00", "2009/7/4 14:00", "2009/7/4 15:00", "2009/7/4 16:00", "2009/7/4 17:00", "2009/7/4 18:00", "2009/7/4 19:00", "2009/7/4 20:00", "2009/7/4 21:00", "2009/7/4 22:00", "2009/7/4 23:00",
- "2009/7/5 0:00", "2009/7/5 1:00", "2009/7/5 2:00", "2009/7/5 3:00", "2009/7/5 4:00", "2009/7/5 5:00", "2009/7/5 6:00", "2009/7/5 7:00", "2009/7/5 8:00", "2009/7/5 9:00", "2009/7/5 10:00", "2009/7/5 11:00", "2009/7/5 12:00", "2009/7/5 13:00", "2009/7/5 14:00", "2009/7/5 15:00", "2009/7/5 16:00", "2009/7/5 17:00", "2009/7/5 18:00", "2009/7/5 19:00", "2009/7/5 20:00", "2009/7/5 21:00", "2009/7/5 22:00", "2009/7/5 23:00",
- "2009/7/6 0:00", "2009/7/6 1:00", "2009/7/6 2:00", "2009/7/6 3:00", "2009/7/6 4:00", "2009/7/6 5:00", "2009/7/6 6:00", "2009/7/6 7:00", "2009/7/6 8:00", "2009/7/6 9:00", "2009/7/6 10:00", "2009/7/6 11:00", "2009/7/6 12:00", "2009/7/6 13:00", "2009/7/6 14:00", "2009/7/6 15:00", "2009/7/6 16:00", "2009/7/6 17:00", "2009/7/6 18:00", "2009/7/6 19:00", "2009/7/6 20:00", "2009/7/6 21:00", "2009/7/6 22:00", "2009/7/6 23:00",
- "2009/7/7 0:00", "2009/7/7 1:00", "2009/7/7 2:00", "2009/7/7 3:00", "2009/7/7 4:00", "2009/7/7 5:00", "2009/7/7 6:00", "2009/7/7 7:00", "2009/7/7 8:00", "2009/7/7 9:00", "2009/7/7 10:00", "2009/7/7 11:00", "2009/7/7 12:00", "2009/7/7 13:00", "2009/7/7 14:00", "2009/7/7 15:00", "2009/7/7 16:00", "2009/7/7 17:00", "2009/7/7 18:00", "2009/7/7 19:00", "2009/7/7 20:00", "2009/7/7 21:00", "2009/7/7 22:00", "2009/7/7 23:00",
- "2009/7/8 0:00", "2009/7/8 1:00", "2009/7/8 2:00", "2009/7/8 3:00", "2009/7/8 4:00", "2009/7/8 5:00", "2009/7/8 6:00", "2009/7/8 7:00", "2009/7/8 8:00", "2009/7/8 9:00", "2009/7/8 10:00", "2009/7/8 11:00", "2009/7/8 12:00", "2009/7/8 13:00", "2009/7/8 14:00", "2009/7/8 15:00", "2009/7/8 16:00", "2009/7/8 17:00", "2009/7/8 18:00", "2009/7/8 19:00", "2009/7/8 20:00", "2009/7/8 21:00", "2009/7/8 22:00", "2009/7/8 23:00",
- "2009/7/9 0:00", "2009/7/9 1:00", "2009/7/9 2:00", "2009/7/9 3:00", "2009/7/9 4:00", "2009/7/9 5:00", "2009/7/9 6:00", "2009/7/9 7:00", "2009/7/9 8:00", "2009/7/9 9:00", "2009/7/9 10:00", "2009/7/9 11:00", "2009/7/9 12:00", "2009/7/9 13:00", "2009/7/9 14:00", "2009/7/9 15:00", "2009/7/9 16:00", "2009/7/9 17:00", "2009/7/9 18:00", "2009/7/9 19:00", "2009/7/9 20:00", "2009/7/9 21:00", "2009/7/9 22:00", "2009/7/9 23:00",
- "2009/7/10 0:00", "2009/7/10 1:00", "2009/7/10 2:00", "2009/7/10 3:00", "2009/7/10 4:00", "2009/7/10 5:00", "2009/7/10 6:00", "2009/7/10 7:00", "2009/7/10 8:00", "2009/7/10 9:00", "2009/7/10 10:00", "2009/7/10 11:00", "2009/7/10 12:00", "2009/7/10 13:00", "2009/7/10 14:00", "2009/7/10 15:00", "2009/7/10 16:00", "2009/7/10 17:00", "2009/7/10 18:00", "2009/7/10 19:00", "2009/7/10 20:00", "2009/7/10 21:00", "2009/7/10 22:00", "2009/7/10 23:00",
- "2009/7/11 0:00", "2009/7/11 1:00", "2009/7/11 2:00", "2009/7/11 3:00", "2009/7/11 4:00", "2009/7/11 5:00", "2009/7/11 6:00", "2009/7/11 7:00", "2009/7/11 8:00", "2009/7/11 9:00", "2009/7/11 10:00", "2009/7/11 11:00", "2009/7/11 12:00", "2009/7/11 13:00", "2009/7/11 14:00", "2009/7/11 15:00", "2009/7/11 16:00", "2009/7/11 17:00", "2009/7/11 18:00", "2009/7/11 19:00", "2009/7/11 20:00", "2009/7/11 21:00", "2009/7/11 22:00", "2009/7/11 23:00",
- "2009/7/12 0:00", "2009/7/12 1:00", "2009/7/12 2:00", "2009/7/12 3:00", "2009/7/12 4:00", "2009/7/12 5:00", "2009/7/12 6:00", "2009/7/12 7:00", "2009/7/12 8:00", "2009/7/12 9:00", "2009/7/12 10:00", "2009/7/12 11:00", "2009/7/12 12:00", "2009/7/12 13:00", "2009/7/12 14:00", "2009/7/12 15:00", "2009/7/12 16:00", "2009/7/12 17:00", "2009/7/12 18:00", "2009/7/12 19:00", "2009/7/12 20:00", "2009/7/12 21:00", "2009/7/12 22:00", "2009/7/12 23:00",
- "2009/7/13 0:00", "2009/7/13 1:00", "2009/7/13 2:00", "2009/7/13 3:00", "2009/7/13 4:00", "2009/7/13 5:00", "2009/7/13 6:00", "2009/7/13 7:00", "2009/7/13 8:00", "2009/7/13 9:00", "2009/7/13 10:00", "2009/7/13 11:00", "2009/7/13 12:00", "2009/7/13 13:00", "2009/7/13 14:00", "2009/7/13 15:00", "2009/7/13 16:00", "2009/7/13 17:00", "2009/7/13 18:00", "2009/7/13 19:00", "2009/7/13 20:00", "2009/7/13 21:00", "2009/7/13 22:00", "2009/7/13 23:00",
- "2009/7/14 0:00", "2009/7/14 1:00", "2009/7/14 2:00", "2009/7/14 3:00", "2009/7/14 4:00", "2009/7/14 5:00", "2009/7/14 6:00", "2009/7/14 7:00", "2009/7/14 8:00", "2009/7/14 9:00", "2009/7/14 10:00", "2009/7/14 11:00", "2009/7/14 12:00", "2009/7/14 13:00", "2009/7/14 14:00", "2009/7/14 15:00", "2009/7/14 16:00", "2009/7/14 17:00", "2009/7/14 18:00", "2009/7/14 19:00", "2009/7/14 20:00", "2009/7/14 21:00", "2009/7/14 22:00", "2009/7/14 23:00",
- "2009/7/15 0:00", "2009/7/15 1:00", "2009/7/15 2:00", "2009/7/15 3:00", "2009/7/15 4:00", "2009/7/15 5:00", "2009/7/15 6:00", "2009/7/15 7:00", "2009/7/15 8:00", "2009/7/15 9:00", "2009/7/15 10:00", "2009/7/15 11:00", "2009/7/15 12:00", "2009/7/15 13:00", "2009/7/15 14:00", "2009/7/15 15:00", "2009/7/15 16:00", "2009/7/15 17:00", "2009/7/15 18:00", "2009/7/15 19:00", "2009/7/15 20:00", "2009/7/15 21:00", "2009/7/15 22:00", "2009/7/15 23:00",
- "2009/7/16 0:00", "2009/7/16 1:00", "2009/7/16 2:00", "2009/7/16 3:00", "2009/7/16 4:00", "2009/7/16 5:00", "2009/7/16 6:00", "2009/7/16 7:00", "2009/7/16 8:00", "2009/7/16 9:00", "2009/7/16 10:00", "2009/7/16 11:00", "2009/7/16 12:00", "2009/7/16 13:00", "2009/7/16 14:00", "2009/7/16 15:00", "2009/7/16 16:00", "2009/7/16 17:00", "2009/7/16 18:00", "2009/7/16 19:00", "2009/7/16 20:00", "2009/7/16 21:00", "2009/7/16 22:00", "2009/7/16 23:00",
- "2009/7/17 0:00", "2009/7/17 1:00", "2009/7/17 2:00", "2009/7/17 3:00", "2009/7/17 4:00", "2009/7/17 5:00", "2009/7/17 6:00", "2009/7/17 7:00", "2009/7/17 8:00", "2009/7/17 9:00", "2009/7/17 10:00", "2009/7/17 11:00", "2009/7/17 12:00", "2009/7/17 13:00", "2009/7/17 14:00", "2009/7/17 15:00", "2009/7/17 16:00", "2009/7/17 17:00", "2009/7/17 18:00", "2009/7/17 19:00", "2009/7/17 20:00", "2009/7/17 21:00", "2009/7/17 22:00", "2009/7/17 23:00",
- "2009/7/18 0:00", "2009/7/18 1:00", "2009/7/18 2:00", "2009/7/18 3:00", "2009/7/18 4:00", "2009/7/18 5:00", "2009/7/18 6:00", "2009/7/18 7:00", "2009/7/18 8:00", "2009/7/18 9:00", "2009/7/18 10:00", "2009/7/18 11:00", "2009/7/18 12:00", "2009/7/18 13:00", "2009/7/18 14:00", "2009/7/18 15:00", "2009/7/18 16:00", "2009/7/18 17:00", "2009/7/18 18:00", "2009/7/18 19:00", "2009/7/18 20:00", "2009/7/18 21:00", "2009/7/18 22:00", "2009/7/18 23:00",
- "2009/7/19 0:00", "2009/7/19 1:00", "2009/7/19 2:00", "2009/7/19 3:00", "2009/7/19 4:00", "2009/7/19 5:00", "2009/7/19 6:00", "2009/7/19 7:00", "2009/7/19 8:00", "2009/7/19 9:00", "2009/7/19 10:00", "2009/7/19 11:00", "2009/7/19 12:00", "2009/7/19 13:00", "2009/7/19 14:00", "2009/7/19 15:00", "2009/7/19 16:00", "2009/7/19 17:00", "2009/7/19 18:00", "2009/7/19 19:00", "2009/7/19 20:00", "2009/7/19 21:00", "2009/7/19 22:00", "2009/7/19 23:00",
- "2009/7/20 0:00", "2009/7/20 1:00", "2009/7/20 2:00", "2009/7/20 3:00", "2009/7/20 4:00", "2009/7/20 5:00", "2009/7/20 6:00", "2009/7/20 7:00", "2009/7/20 8:00", "2009/7/20 9:00", "2009/7/20 10:00", "2009/7/20 11:00", "2009/7/20 12:00", "2009/7/20 13:00", "2009/7/20 14:00", "2009/7/20 15:00", "2009/7/20 16:00", "2009/7/20 17:00", "2009/7/20 18:00", "2009/7/20 19:00", "2009/7/20 20:00", "2009/7/20 21:00", "2009/7/20 22:00", "2009/7/20 23:00",
- "2009/7/21 0:00", "2009/7/21 1:00", "2009/7/21 2:00", "2009/7/21 3:00", "2009/7/21 4:00", "2009/7/21 5:00", "2009/7/21 6:00", "2009/7/21 7:00", "2009/7/21 8:00", "2009/7/21 9:00", "2009/7/21 10:00", "2009/7/21 11:00", "2009/7/21 12:00", "2009/7/21 13:00", "2009/7/21 14:00", "2009/7/21 15:00", "2009/7/21 16:00", "2009/7/21 17:00", "2009/7/21 18:00", "2009/7/21 19:00", "2009/7/21 20:00", "2009/7/21 21:00", "2009/7/21 22:00", "2009/7/21 23:00",
- "2009/7/22 0:00", "2009/7/22 1:00", "2009/7/22 2:00", "2009/7/22 3:00", "2009/7/22 4:00", "2009/7/22 5:00", "2009/7/22 6:00", "2009/7/22 7:00", "2009/7/22 8:00", "2009/7/22 9:00", "2009/7/22 10:00", "2009/7/22 11:00", "2009/7/22 12:00", "2009/7/22 13:00", "2009/7/22 14:00", "2009/7/22 15:00", "2009/7/22 16:00", "2009/7/22 17:00", "2009/7/22 18:00", "2009/7/22 19:00", "2009/7/22 20:00", "2009/7/22 21:00", "2009/7/22 22:00", "2009/7/22 23:00",
- "2009/7/23 0:00", "2009/7/23 1:00", "2009/7/23 2:00", "2009/7/23 3:00", "2009/7/23 4:00", "2009/7/23 5:00", "2009/7/23 6:00", "2009/7/23 7:00", "2009/7/23 8:00", "2009/7/23 9:00", "2009/7/23 10:00", "2009/7/23 11:00", "2009/7/23 12:00", "2009/7/23 13:00", "2009/7/23 14:00", "2009/7/23 15:00", "2009/7/23 16:00", "2009/7/23 17:00", "2009/7/23 18:00", "2009/7/23 19:00", "2009/7/23 20:00", "2009/7/23 21:00", "2009/7/23 22:00", "2009/7/23 23:00",
- "2009/7/24 0:00", "2009/7/24 1:00", "2009/7/24 2:00", "2009/7/24 3:00", "2009/7/24 4:00", "2009/7/24 5:00", "2009/7/24 6:00", "2009/7/24 7:00", "2009/7/24 8:00", "2009/7/24 9:00", "2009/7/24 10:00", "2009/7/24 11:00", "2009/7/24 12:00", "2009/7/24 13:00", "2009/7/24 14:00", "2009/7/24 15:00", "2009/7/24 16:00", "2009/7/24 17:00", "2009/7/24 18:00", "2009/7/24 19:00", "2009/7/24 20:00", "2009/7/24 21:00", "2009/7/24 22:00", "2009/7/24 23:00",
- "2009/7/25 0:00", "2009/7/25 1:00", "2009/7/25 2:00", "2009/7/25 3:00", "2009/7/25 4:00", "2009/7/25 5:00", "2009/7/25 6:00", "2009/7/25 7:00", "2009/7/25 8:00", "2009/7/25 9:00", "2009/7/25 10:00", "2009/7/25 11:00", "2009/7/25 12:00", "2009/7/25 13:00", "2009/7/25 14:00", "2009/7/25 15:00", "2009/7/25 16:00", "2009/7/25 17:00", "2009/7/25 18:00", "2009/7/25 19:00", "2009/7/25 20:00", "2009/7/25 21:00", "2009/7/25 22:00", "2009/7/25 23:00",
- "2009/7/26 0:00", "2009/7/26 1:00", "2009/7/26 2:00", "2009/7/26 3:00", "2009/7/26 4:00", "2009/7/26 5:00", "2009/7/26 6:00", "2009/7/26 7:00", "2009/7/26 8:00", "2009/7/26 9:00", "2009/7/26 10:00", "2009/7/26 11:00", "2009/7/26 12:00", "2009/7/26 13:00", "2009/7/26 14:00", "2009/7/26 15:00", "2009/7/26 16:00", "2009/7/26 17:00", "2009/7/26 18:00", "2009/7/26 19:00", "2009/7/26 20:00", "2009/7/26 21:00", "2009/7/26 22:00", "2009/7/26 23:00",
- "2009/7/27 0:00", "2009/7/27 1:00", "2009/7/27 2:00", "2009/7/27 3:00", "2009/7/27 4:00", "2009/7/27 5:00", "2009/7/27 6:00", "2009/7/27 7:00", "2009/7/27 8:00", "2009/7/27 9:00", "2009/7/27 10:00", "2009/7/27 11:00", "2009/7/27 12:00", "2009/7/27 13:00", "2009/7/27 14:00", "2009/7/27 15:00", "2009/7/27 16:00", "2009/7/27 17:00", "2009/7/27 18:00", "2009/7/27 19:00", "2009/7/27 20:00", "2009/7/27 21:00", "2009/7/27 22:00", "2009/7/27 23:00",
- "2009/7/28 0:00", "2009/7/28 1:00", "2009/7/28 2:00", "2009/7/28 3:00", "2009/7/28 4:00", "2009/7/28 5:00", "2009/7/28 6:00", "2009/7/28 7:00", "2009/7/28 8:00", "2009/7/28 9:00", "2009/7/28 10:00", "2009/7/28 11:00", "2009/7/28 12:00", "2009/7/28 13:00", "2009/7/28 14:00", "2009/7/28 15:00", "2009/7/28 16:00", "2009/7/28 17:00", "2009/7/28 18:00", "2009/7/28 19:00", "2009/7/28 20:00", "2009/7/28 21:00", "2009/7/28 22:00", "2009/7/28 23:00",
- "2009/7/29 0:00", "2009/7/29 1:00", "2009/7/29 2:00", "2009/7/29 3:00", "2009/7/29 4:00", "2009/7/29 5:00", "2009/7/29 6:00", "2009/7/29 7:00", "2009/7/29 8:00", "2009/7/29 9:00", "2009/7/29 10:00", "2009/7/29 11:00", "2009/7/29 12:00", "2009/7/29 13:00", "2009/7/29 14:00", "2009/7/29 15:00", "2009/7/29 16:00", "2009/7/29 17:00", "2009/7/29 18:00", "2009/7/29 19:00", "2009/7/29 20:00", "2009/7/29 21:00", "2009/7/29 22:00", "2009/7/29 23:00",
- "2009/7/30 0:00", "2009/7/30 1:00", "2009/7/30 2:00", "2009/7/30 3:00", "2009/7/30 4:00", "2009/7/30 5:00", "2009/7/30 6:00", "2009/7/30 7:00", "2009/7/30 8:00", "2009/7/30 9:00", "2009/7/30 10:00", "2009/7/30 11:00", "2009/7/30 12:00", "2009/7/30 13:00", "2009/7/30 14:00", "2009/7/30 15:00", "2009/7/30 16:00", "2009/7/30 17:00", "2009/7/30 18:00", "2009/7/30 19:00", "2009/7/30 20:00", "2009/7/30 21:00", "2009/7/30 22:00", "2009/7/30 23:00",
- "2009/7/31 0:00", "2009/7/31 1:00", "2009/7/31 2:00", "2009/7/31 3:00", "2009/7/31 4:00", "2009/7/31 5:00", "2009/7/31 6:00", "2009/7/31 7:00", "2009/7/31 8:00", "2009/7/31 9:00", "2009/7/31 10:00", "2009/7/31 11:00", "2009/7/31 12:00", "2009/7/31 13:00", "2009/7/31 14:00", "2009/7/31 15:00", "2009/7/31 16:00", "2009/7/31 17:00", "2009/7/31 18:00", "2009/7/31 19:00", "2009/7/31 20:00", "2009/7/31 21:00", "2009/7/31 22:00", "2009/7/31 23:00",
- "2009/8/1 0:00", "2009/8/1 1:00", "2009/8/1 2:00", "2009/8/1 3:00", "2009/8/1 4:00", "2009/8/1 5:00", "2009/8/1 6:00", "2009/8/1 7:00", "2009/8/1 8:00", "2009/8/1 9:00", "2009/8/1 10:00", "2009/8/1 11:00", "2009/8/1 12:00", "2009/8/1 13:00", "2009/8/1 14:00", "2009/8/1 15:00", "2009/8/1 16:00", "2009/8/1 17:00", "2009/8/1 18:00", "2009/8/1 19:00", "2009/8/1 20:00", "2009/8/1 21:00", "2009/8/1 22:00", "2009/8/1 23:00", "2009/8/2 0:00", "2009/8/2 1:00", "2009/8/2 2:00", "2009/8/2 3:00", "2009/8/2 4:00", "2009/8/2 5:00", "2009/8/2 6:00", "2009/8/2 7:00", "2009/8/2 8:00", "2009/8/2 9:00", "2009/8/2 10:00", "2009/8/2 11:00", "2009/8/2 12:00", "2009/8/2 13:00", "2009/8/2 14:00", "2009/8/2 15:00", "2009/8/2 16:00", "2009/8/2 17:00", "2009/8/2 18:00", "2009/8/2 19:00", "2009/8/2 20:00", "2009/8/2 21:00", "2009/8/2 22:00", "2009/8/2 23:00", "2009/8/3 0:00", "2009/8/3 1:00", "2009/8/3 2:00", "2009/8/3 3:00", "2009/8/3 4:00", "2009/8/3 5:00", "2009/8/3 6:00", "2009/8/3 7:00", "2009/8/3 8:00", "2009/8/3 9:00", "2009/8/3 10:00", "2009/8/3 11:00", "2009/8/3 12:00", "2009/8/3 13:00", "2009/8/3 14:00", "2009/8/3 15:00", "2009/8/3 16:00", "2009/8/3 17:00", "2009/8/3 18:00", "2009/8/3 19:00", "2009/8/3 20:00", "2009/8/3 21:00", "2009/8/3 22:00", "2009/8/3 23:00", "2009/8/4 0:00", "2009/8/4 1:00", "2009/8/4 2:00", "2009/8/4 3:00", "2009/8/4 4:00", "2009/8/4 5:00", "2009/8/4 6:00", "2009/8/4 7:00", "2009/8/4 8:00", "2009/8/4 9:00", "2009/8/4 10:00", "2009/8/4 11:00", "2009/8/4 12:00", "2009/8/4 13:00", "2009/8/4 14:00", "2009/8/4 15:00", "2009/8/4 16:00", "2009/8/4 17:00", "2009/8/4 18:00", "2009/8/4 19:00", "2009/8/4 20:00", "2009/8/4 21:00", "2009/8/4 22:00", "2009/8/4 23:00", "2009/8/5 0:00", "2009/8/5 1:00", "2009/8/5 2:00", "2009/8/5 3:00", "2009/8/5 4:00", "2009/8/5 5:00", "2009/8/5 6:00", "2009/8/5 7:00", "2009/8/5 8:00", "2009/8/5 9:00", "2009/8/5 10:00", "2009/8/5 11:00", "2009/8/5 12:00", "2009/8/5 13:00", "2009/8/5 14:00", "2009/8/5 15:00", "2009/8/5 16:00", "2009/8/5 17:00", "2009/8/5 18:00", "2009/8/5 19:00", "2009/8/5 20:00", "2009/8/5 21:00", "2009/8/5 22:00", "2009/8/5 23:00", "2009/8/6 0:00", "2009/8/6 1:00", "2009/8/6 2:00", "2009/8/6 3:00", "2009/8/6 4:00", "2009/8/6 5:00", "2009/8/6 6:00", "2009/8/6 7:00", "2009/8/6 8:00", "2009/8/6 9:00", "2009/8/6 10:00", "2009/8/6 11:00", "2009/8/6 12:00", "2009/8/6 13:00", "2009/8/6 14:00", "2009/8/6 15:00", "2009/8/6 16:00", "2009/8/6 17:00", "2009/8/6 18:00", "2009/8/6 19:00", "2009/8/6 20:00", "2009/8/6 21:00", "2009/8/6 22:00", "2009/8/6 23:00", "2009/8/7 0:00", "2009/8/7 1:00", "2009/8/7 2:00", "2009/8/7 3:00", "2009/8/7 4:00", "2009/8/7 5:00", "2009/8/7 6:00", "2009/8/7 7:00", "2009/8/7 8:00", "2009/8/7 9:00", "2009/8/7 10:00", "2009/8/7 11:00", "2009/8/7 12:00", "2009/8/7 13:00", "2009/8/7 14:00", "2009/8/7 15:00", "2009/8/7 16:00", "2009/8/7 17:00", "2009/8/7 18:00", "2009/8/7 19:00", "2009/8/7 20:00", "2009/8/7 21:00", "2009/8/7 22:00", "2009/8/7 23:00", "2009/8/8 0:00", "2009/8/8 1:00", "2009/8/8 2:00", "2009/8/8 3:00", "2009/8/8 4:00", "2009/8/8 5:00", "2009/8/8 6:00", "2009/8/8 7:00", "2009/8/8 8:00", "2009/8/8 9:00", "2009/8/8 10:00", "2009/8/8 11:00", "2009/8/8 12:00", "2009/8/8 13:00", "2009/8/8 14:00", "2009/8/8 15:00", "2009/8/8 16:00", "2009/8/8 17:00", "2009/8/8 18:00", "2009/8/8 19:00", "2009/8/8 20:00", "2009/8/8 21:00", "2009/8/8 22:00", "2009/8/8 23:00", "2009/8/9 0:00", "2009/8/9 1:00", "2009/8/9 2:00", "2009/8/9 3:00", "2009/8/9 4:00", "2009/8/9 5:00", "2009/8/9 6:00", "2009/8/9 7:00", "2009/8/9 8:00", "2009/8/9 9:00", "2009/8/9 10:00", "2009/8/9 11:00", "2009/8/9 12:00", "2009/8/9 13:00", "2009/8/9 14:00", "2009/8/9 15:00", "2009/8/9 16:00", "2009/8/9 17:00", "2009/8/9 18:00", "2009/8/9 19:00", "2009/8/9 20:00", "2009/8/9 21:00", "2009/8/9 22:00", "2009/8/9 23:00", "2009/8/10 0:00", "2009/8/10 1:00", "2009/8/10 2:00", "2009/8/10 3:00", "2009/8/10 4:00", "2009/8/10 5:00", "2009/8/10 6:00", "2009/8/10 7:00", "2009/8/10 8:00", "2009/8/10 9:00", "2009/8/10 10:00", "2009/8/10 11:00", "2009/8/10 12:00", "2009/8/10 13:00", "2009/8/10 14:00", "2009/8/10 15:00", "2009/8/10 16:00", "2009/8/10 17:00", "2009/8/10 18:00", "2009/8/10 19:00", "2009/8/10 20:00", "2009/8/10 21:00", "2009/8/10 22:00", "2009/8/10 23:00", "2009/8/11 0:00", "2009/8/11 1:00", "2009/8/11 2:00", "2009/8/11 3:00", "2009/8/11 4:00", "2009/8/11 5:00", "2009/8/11 6:00", "2009/8/11 7:00", "2009/8/11 8:00", "2009/8/11 9:00", "2009/8/11 10:00", "2009/8/11 11:00", "2009/8/11 12:00", "2009/8/11 13:00", "2009/8/11 14:00", "2009/8/11 15:00", "2009/8/11 16:00", "2009/8/11 17:00", "2009/8/11 18:00", "2009/8/11 19:00", "2009/8/11 20:00", "2009/8/11 21:00", "2009/8/11 22:00", "2009/8/11 23:00", "2009/8/12 0:00", "2009/8/12 1:00", "2009/8/12 2:00", "2009/8/12 3:00", "2009/8/12 4:00", "2009/8/12 5:00", "2009/8/12 6:00", "2009/8/12 7:00", "2009/8/12 8:00", "2009/8/12 9:00", "2009/8/12 10:00", "2009/8/12 11:00", "2009/8/12 12:00", "2009/8/12 13:00", "2009/8/12 14:00", "2009/8/12 15:00", "2009/8/12 16:00", "2009/8/12 17:00", "2009/8/12 18:00", "2009/8/12 19:00", "2009/8/12 20:00", "2009/8/12 21:00", "2009/8/12 22:00", "2009/8/12 23:00", "2009/8/13 0:00", "2009/8/13 1:00", "2009/8/13 2:00", "2009/8/13 3:00", "2009/8/13 4:00", "2009/8/13 5:00", "2009/8/13 6:00", "2009/8/13 7:00", "2009/8/13 8:00", "2009/8/13 9:00", "2009/8/13 10:00", "2009/8/13 11:00", "2009/8/13 12:00", "2009/8/13 13:00", "2009/8/13 14:00", "2009/8/13 15:00", "2009/8/13 16:00", "2009/8/13 17:00", "2009/8/13 18:00", "2009/8/13 19:00", "2009/8/13 20:00", "2009/8/13 21:00", "2009/8/13 22:00", "2009/8/13 23:00", "2009/8/14 0:00", "2009/8/14 1:00", "2009/8/14 2:00", "2009/8/14 3:00", "2009/8/14 4:00", "2009/8/14 5:00", "2009/8/14 6:00", "2009/8/14 7:00", "2009/8/14 8:00", "2009/8/14 9:00", "2009/8/14 10:00", "2009/8/14 11:00", "2009/8/14 12:00", "2009/8/14 13:00", "2009/8/14 14:00", "2009/8/14 15:00", "2009/8/14 16:00", "2009/8/14 17:00", "2009/8/14 18:00", "2009/8/14 19:00", "2009/8/14 20:00", "2009/8/14 21:00", "2009/8/14 22:00", "2009/8/14 23:00", "2009/8/15 0:00", "2009/8/15 1:00", "2009/8/15 2:00", "2009/8/15 3:00", "2009/8/15 4:00", "2009/8/15 5:00", "2009/8/15 6:00", "2009/8/15 7:00", "2009/8/15 8:00", "2009/8/15 9:00", "2009/8/15 10:00", "2009/8/15 11:00", "2009/8/15 12:00", "2009/8/15 13:00", "2009/8/15 14:00", "2009/8/15 15:00", "2009/8/15 16:00", "2009/8/15 17:00", "2009/8/15 18:00", "2009/8/15 19:00", "2009/8/15 20:00", "2009/8/15 21:00", "2009/8/15 22:00", "2009/8/15 23:00", "2009/8/16 0:00", "2009/8/16 1:00", "2009/8/16 2:00", "2009/8/16 3:00", "2009/8/16 4:00", "2009/8/16 5:00", "2009/8/16 6:00", "2009/8/16 7:00", "2009/8/16 8:00", "2009/8/16 9:00", "2009/8/16 10:00", "2009/8/16 11:00", "2009/8/16 12:00", "2009/8/16 13:00", "2009/8/16 14:00", "2009/8/16 15:00", "2009/8/16 16:00", "2009/8/16 17:00", "2009/8/16 18:00", "2009/8/16 19:00", "2009/8/16 20:00", "2009/8/16 21:00", "2009/8/16 22:00", "2009/8/16 23:00", "2009/8/17 0:00", "2009/8/17 1:00", "2009/8/17 2:00", "2009/8/17 3:00", "2009/8/17 4:00", "2009/8/17 5:00", "2009/8/17 6:00", "2009/8/17 7:00", "2009/8/17 8:00", "2009/8/17 9:00", "2009/8/17 10:00", "2009/8/17 11:00", "2009/8/17 12:00", "2009/8/17 13:00", "2009/8/17 14:00", "2009/8/17 15:00", "2009/8/17 16:00", "2009/8/17 17:00", "2009/8/17 18:00", "2009/8/17 19:00", "2009/8/17 20:00", "2009/8/17 21:00", "2009/8/17 22:00", "2009/8/17 23:00", "2009/8/18 0:00", "2009/8/18 1:00", "2009/8/18 2:00", "2009/8/18 3:00", "2009/8/18 4:00", "2009/8/18 5:00", "2009/8/18 6:00", "2009/8/18 7:00", "2009/8/18 8:00", "2009/8/18 9:00", "2009/8/18 10:00", "2009/8/18 11:00", "2009/8/18 12:00", "2009/8/18 13:00", "2009/8/18 14:00", "2009/8/18 15:00", "2009/8/18 16:00", "2009/8/18 17:00", "2009/8/18 18:00", "2009/8/18 19:00", "2009/8/18 20:00", "2009/8/18 21:00", "2009/8/18 22:00", "2009/8/18 23:00", "2009/8/19 0:00", "2009/8/19 1:00", "2009/8/19 2:00", "2009/8/19 3:00", "2009/8/19 4:00", "2009/8/19 5:00", "2009/8/19 6:00", "2009/8/19 7:00", "2009/8/19 8:00", "2009/8/19 9:00", "2009/8/19 10:00", "2009/8/19 11:00", "2009/8/19 12:00", "2009/8/19 13:00", "2009/8/19 14:00", "2009/8/19 15:00", "2009/8/19 16:00", "2009/8/19 17:00", "2009/8/19 18:00", "2009/8/19 19:00", "2009/8/19 20:00", "2009/8/19 21:00", "2009/8/19 22:00", "2009/8/19 23:00", "2009/8/20 0:00", "2009/8/20 1:00", "2009/8/20 2:00", "2009/8/20 3:00", "2009/8/20 4:00", "2009/8/20 5:00", "2009/8/20 6:00", "2009/8/20 7:00", "2009/8/20 8:00", "2009/8/20 9:00", "2009/8/20 10:00", "2009/8/20 11:00", "2009/8/20 12:00", "2009/8/20 13:00", "2009/8/20 14:00", "2009/8/20 15:00", "2009/8/20 16:00", "2009/8/20 17:00", "2009/8/20 18:00", "2009/8/20 19:00", "2009/8/20 20:00", "2009/8/20 21:00", "2009/8/20 22:00", "2009/8/20 23:00", "2009/8/21 0:00", "2009/8/21 1:00", "2009/8/21 2:00", "2009/8/21 3:00", "2009/8/21 4:00", "2009/8/21 5:00", "2009/8/21 6:00", "2009/8/21 7:00", "2009/8/21 8:00", "2009/8/21 9:00", "2009/8/21 10:00", "2009/8/21 11:00", "2009/8/21 12:00", "2009/8/21 13:00", "2009/8/21 14:00", "2009/8/21 15:00", "2009/8/21 16:00", "2009/8/21 17:00", "2009/8/21 18:00", "2009/8/21 19:00", "2009/8/21 20:00", "2009/8/21 21:00", "2009/8/21 22:00", "2009/8/21 23:00", "2009/8/22 0:00", "2009/8/22 1:00", "2009/8/22 2:00", "2009/8/22 3:00", "2009/8/22 4:00", "2009/8/22 5:00", "2009/8/22 6:00", "2009/8/22 7:00", "2009/8/22 8:00", "2009/8/22 9:00", "2009/8/22 10:00", "2009/8/22 11:00", "2009/8/22 12:00", "2009/8/22 13:00", "2009/8/22 14:00", "2009/8/22 15:00", "2009/8/22 16:00", "2009/8/22 17:00", "2009/8/22 18:00", "2009/8/22 19:00", "2009/8/22 20:00", "2009/8/22 21:00", "2009/8/22 22:00", "2009/8/22 23:00", "2009/8/23 0:00", "2009/8/23 1:00", "2009/8/23 2:00", "2009/8/23 3:00", "2009/8/23 4:00", "2009/8/23 5:00", "2009/8/23 6:00", "2009/8/23 7:00", "2009/8/23 8:00", "2009/8/23 9:00", "2009/8/23 10:00", "2009/8/23 11:00", "2009/8/23 12:00", "2009/8/23 13:00", "2009/8/23 14:00", "2009/8/23 15:00", "2009/8/23 16:00", "2009/8/23 17:00", "2009/8/23 18:00", "2009/8/23 19:00", "2009/8/23 20:00", "2009/8/23 21:00", "2009/8/23 22:00", "2009/8/23 23:00", "2009/8/24 0:00", "2009/8/24 1:00", "2009/8/24 2:00", "2009/8/24 3:00", "2009/8/24 4:00", "2009/8/24 5:00", "2009/8/24 6:00", "2009/8/24 7:00", "2009/8/24 8:00", "2009/8/24 9:00", "2009/8/24 10:00", "2009/8/24 11:00", "2009/8/24 12:00", "2009/8/24 13:00", "2009/8/24 14:00", "2009/8/24 15:00", "2009/8/24 16:00", "2009/8/24 17:00", "2009/8/24 18:00", "2009/8/24 19:00", "2009/8/24 20:00", "2009/8/24 21:00", "2009/8/24 22:00", "2009/8/24 23:00", "2009/8/25 0:00", "2009/8/25 1:00", "2009/8/25 2:00", "2009/8/25 3:00", "2009/8/25 4:00", "2009/8/25 5:00", "2009/8/25 6:00", "2009/8/25 7:00", "2009/8/25 8:00", "2009/8/25 9:00", "2009/8/25 10:00", "2009/8/25 11:00", "2009/8/25 12:00", "2009/8/25 13:00", "2009/8/25 14:00", "2009/8/25 15:00", "2009/8/25 16:00", "2009/8/25 17:00", "2009/8/25 18:00", "2009/8/25 19:00", "2009/8/25 20:00", "2009/8/25 21:00", "2009/8/25 22:00", "2009/8/25 23:00", "2009/8/26 0:00", "2009/8/26 1:00", "2009/8/26 2:00", "2009/8/26 3:00", "2009/8/26 4:00", "2009/8/26 5:00", "2009/8/26 6:00", "2009/8/26 7:00", "2009/8/26 8:00", "2009/8/26 9:00", "2009/8/26 10:00", "2009/8/26 11:00", "2009/8/26 12:00", "2009/8/26 13:00", "2009/8/26 14:00", "2009/8/26 15:00", "2009/8/26 16:00", "2009/8/26 17:00", "2009/8/26 18:00", "2009/8/26 19:00", "2009/8/26 20:00", "2009/8/26 21:00", "2009/8/26 22:00", "2009/8/26 23:00", "2009/8/27 0:00", "2009/8/27 1:00", "2009/8/27 2:00", "2009/8/27 3:00", "2009/8/27 4:00", "2009/8/27 5:00", "2009/8/27 6:00", "2009/8/27 7:00", "2009/8/27 8:00", "2009/8/27 9:00", "2009/8/27 10:00", "2009/8/27 11:00", "2009/8/27 12:00", "2009/8/27 13:00", "2009/8/27 14:00", "2009/8/27 15:00", "2009/8/27 16:00", "2009/8/27 17:00", "2009/8/27 18:00", "2009/8/27 19:00", "2009/8/27 20:00", "2009/8/27 21:00", "2009/8/27 22:00", "2009/8/27 23:00", "2009/8/28 0:00", "2009/8/28 1:00", "2009/8/28 2:00", "2009/8/28 3:00", "2009/8/28 4:00", "2009/8/28 5:00", "2009/8/28 6:00", "2009/8/28 7:00", "2009/8/28 8:00", "2009/8/28 9:00", "2009/8/28 10:00", "2009/8/28 11:00", "2009/8/28 12:00", "2009/8/28 13:00", "2009/8/28 14:00", "2009/8/28 15:00", "2009/8/28 16:00", "2009/8/28 17:00", "2009/8/28 18:00", "2009/8/28 19:00", "2009/8/28 20:00", "2009/8/28 21:00", "2009/8/28 22:00", "2009/8/28 23:00", "2009/8/29 0:00", "2009/8/29 1:00", "2009/8/29 2:00", "2009/8/29 3:00", "2009/8/29 4:00", "2009/8/29 5:00", "2009/8/29 6:00", "2009/8/29 7:00", "2009/8/29 8:00", "2009/8/29 9:00", "2009/8/29 10:00", "2009/8/29 11:00", "2009/8/29 12:00", "2009/8/29 13:00", "2009/8/29 14:00", "2009/8/29 15:00", "2009/8/29 16:00", "2009/8/29 17:00", "2009/8/29 18:00", "2009/8/29 19:00", "2009/8/29 20:00", "2009/8/29 21:00", "2009/8/29 22:00", "2009/8/29 23:00", "2009/8/30 0:00", "2009/8/30 1:00", "2009/8/30 2:00", "2009/8/30 3:00", "2009/8/30 4:00", "2009/8/30 5:00", "2009/8/30 6:00", "2009/8/30 7:00", "2009/8/30 8:00", "2009/8/30 9:00", "2009/8/30 10:00", "2009/8/30 11:00", "2009/8/30 12:00", "2009/8/30 13:00", "2009/8/30 14:00", "2009/8/30 15:00", "2009/8/30 16:00", "2009/8/30 17:00", "2009/8/30 18:00", "2009/8/30 19:00", "2009/8/30 20:00", "2009/8/30 21:00", "2009/8/30 22:00", "2009/8/30 23:00", "2009/8/31 0:00", "2009/8/31 1:00", "2009/8/31 2:00", "2009/8/31 3:00", "2009/8/31 4:00", "2009/8/31 5:00", "2009/8/31 6:00", "2009/8/31 7:00", "2009/8/31 8:00", "2009/8/31 9:00", "2009/8/31 10:00", "2009/8/31 11:00", "2009/8/31 12:00", "2009/8/31 13:00", "2009/8/31 14:00", "2009/8/31 15:00", "2009/8/31 16:00", "2009/8/31 17:00", "2009/8/31 18:00", "2009/8/31 19:00", "2009/8/31 20:00", "2009/8/31 21:00", "2009/8/31 22:00", "2009/8/31 23:00",
- "2009/9/1 0:00", "2009/9/1 1:00", "2009/9/1 2:00", "2009/9/1 3:00", "2009/9/1 4:00", "2009/9/1 5:00", "2009/9/1 6:00", "2009/9/1 7:00", "2009/9/1 8:00", "2009/9/1 9:00", "2009/9/1 10:00", "2009/9/1 11:00", "2009/9/1 12:00", "2009/9/1 13:00", "2009/9/1 14:00", "2009/9/1 15:00", "2009/9/1 16:00", "2009/9/1 17:00", "2009/9/1 18:00", "2009/9/1 19:00", "2009/9/1 20:00", "2009/9/1 21:00", "2009/9/1 22:00", "2009/9/1 23:00", "2009/9/2 0:00", "2009/9/2 1:00", "2009/9/2 2:00", "2009/9/2 3:00", "2009/9/2 4:00", "2009/9/2 5:00", "2009/9/2 6:00", "2009/9/2 7:00", "2009/9/2 8:00", "2009/9/2 9:00", "2009/9/2 10:00", "2009/9/2 11:00", "2009/9/2 12:00", "2009/9/2 13:00", "2009/9/2 14:00", "2009/9/2 15:00", "2009/9/2 16:00", "2009/9/2 17:00", "2009/9/2 18:00", "2009/9/2 19:00", "2009/9/2 20:00", "2009/9/2 21:00", "2009/9/2 22:00", "2009/9/2 23:00", "2009/9/3 0:00", "2009/9/3 1:00", "2009/9/3 2:00", "2009/9/3 3:00", "2009/9/3 4:00", "2009/9/3 5:00", "2009/9/3 6:00", "2009/9/3 7:00", "2009/9/3 8:00", "2009/9/3 9:00", "2009/9/3 10:00", "2009/9/3 11:00", "2009/9/3 12:00", "2009/9/3 13:00", "2009/9/3 14:00", "2009/9/3 15:00", "2009/9/3 16:00", "2009/9/3 17:00", "2009/9/3 18:00", "2009/9/3 19:00", "2009/9/3 20:00", "2009/9/3 21:00", "2009/9/3 22:00", "2009/9/3 23:00", "2009/9/4 0:00", "2009/9/4 1:00", "2009/9/4 2:00", "2009/9/4 3:00", "2009/9/4 4:00", "2009/9/4 5:00", "2009/9/4 6:00", "2009/9/4 7:00", "2009/9/4 8:00", "2009/9/4 9:00", "2009/9/4 10:00", "2009/9/4 11:00", "2009/9/4 12:00", "2009/9/4 13:00", "2009/9/4 14:00", "2009/9/4 15:00", "2009/9/4 16:00", "2009/9/4 17:00", "2009/9/4 18:00", "2009/9/4 19:00", "2009/9/4 20:00", "2009/9/4 21:00", "2009/9/4 22:00", "2009/9/4 23:00", "2009/9/5 0:00", "2009/9/5 1:00", "2009/9/5 2:00", "2009/9/5 3:00", "2009/9/5 4:00", "2009/9/5 5:00", "2009/9/5 6:00", "2009/9/5 7:00", "2009/9/5 8:00", "2009/9/5 9:00", "2009/9/5 10:00", "2009/9/5 11:00", "2009/9/5 12:00", "2009/9/5 13:00", "2009/9/5 14:00", "2009/9/5 15:00", "2009/9/5 16:00", "2009/9/5 17:00", "2009/9/5 18:00", "2009/9/5 19:00", "2009/9/5 20:00", "2009/9/5 21:00", "2009/9/5 22:00", "2009/9/5 23:00", "2009/9/6 0:00", "2009/9/6 1:00", "2009/9/6 2:00", "2009/9/6 3:00", "2009/9/6 4:00", "2009/9/6 5:00", "2009/9/6 6:00", "2009/9/6 7:00", "2009/9/6 8:00", "2009/9/6 9:00", "2009/9/6 10:00", "2009/9/6 11:00", "2009/9/6 12:00", "2009/9/6 13:00", "2009/9/6 14:00", "2009/9/6 15:00", "2009/9/6 16:00", "2009/9/6 17:00", "2009/9/6 18:00", "2009/9/6 19:00", "2009/9/6 20:00", "2009/9/6 21:00", "2009/9/6 22:00", "2009/9/6 23:00", "2009/9/7 0:00", "2009/9/7 1:00", "2009/9/7 2:00", "2009/9/7 3:00", "2009/9/7 4:00", "2009/9/7 5:00", "2009/9/7 6:00", "2009/9/7 7:00", "2009/9/7 8:00", "2009/9/7 9:00", "2009/9/7 10:00", "2009/9/7 11:00", "2009/9/7 12:00", "2009/9/7 13:00", "2009/9/7 14:00", "2009/9/7 15:00", "2009/9/7 16:00", "2009/9/7 17:00", "2009/9/7 18:00", "2009/9/7 19:00", "2009/9/7 20:00", "2009/9/7 21:00", "2009/9/7 22:00", "2009/9/7 23:00", "2009/9/8 0:00", "2009/9/8 1:00", "2009/9/8 2:00", "2009/9/8 3:00", "2009/9/8 4:00", "2009/9/8 5:00", "2009/9/8 6:00", "2009/9/8 7:00", "2009/9/8 8:00", "2009/9/8 9:00", "2009/9/8 10:00", "2009/9/8 11:00", "2009/9/8 12:00", "2009/9/8 13:00", "2009/9/8 14:00", "2009/9/8 15:00", "2009/9/8 16:00", "2009/9/8 17:00", "2009/9/8 18:00", "2009/9/8 19:00", "2009/9/8 20:00", "2009/9/8 21:00", "2009/9/8 22:00", "2009/9/8 23:00", "2009/9/9 0:00", "2009/9/9 1:00", "2009/9/9 2:00", "2009/9/9 3:00", "2009/9/9 4:00", "2009/9/9 5:00", "2009/9/9 6:00", "2009/9/9 7:00", "2009/9/9 8:00", "2009/9/9 9:00", "2009/9/9 10:00", "2009/9/9 11:00", "2009/9/9 12:00", "2009/9/9 13:00", "2009/9/9 14:00", "2009/9/9 15:00", "2009/9/9 16:00", "2009/9/9 17:00", "2009/9/9 18:00", "2009/9/9 19:00", "2009/9/9 20:00", "2009/9/9 21:00", "2009/9/9 22:00", "2009/9/9 23:00", "2009/9/10 0:00", "2009/9/10 1:00", "2009/9/10 2:00", "2009/9/10 3:00", "2009/9/10 4:00", "2009/9/10 5:00", "2009/9/10 6:00", "2009/9/10 7:00", "2009/9/10 8:00", "2009/9/10 9:00", "2009/9/10 10:00", "2009/9/10 11:00", "2009/9/10 12:00", "2009/9/10 13:00", "2009/9/10 14:00", "2009/9/10 15:00", "2009/9/10 16:00", "2009/9/10 17:00", "2009/9/10 18:00", "2009/9/10 19:00", "2009/9/10 20:00", "2009/9/10 21:00", "2009/9/10 22:00", "2009/9/10 23:00", "2009/9/11 0:00", "2009/9/11 1:00", "2009/9/11 2:00", "2009/9/11 3:00", "2009/9/11 4:00", "2009/9/11 5:00", "2009/9/11 6:00", "2009/9/11 7:00", "2009/9/11 8:00", "2009/9/11 9:00", "2009/9/11 10:00", "2009/9/11 11:00", "2009/9/11 12:00", "2009/9/11 13:00", "2009/9/11 14:00", "2009/9/11 15:00", "2009/9/11 16:00", "2009/9/11 17:00", "2009/9/11 18:00", "2009/9/11 19:00", "2009/9/11 20:00", "2009/9/11 21:00", "2009/9/11 22:00", "2009/9/11 23:00", "2009/9/12 0:00", "2009/9/12 1:00", "2009/9/12 2:00", "2009/9/12 3:00", "2009/9/12 4:00", "2009/9/12 5:00", "2009/9/12 6:00", "2009/9/12 7:00", "2009/9/12 8:00", "2009/9/12 9:00", "2009/9/12 10:00", "2009/9/12 11:00", "2009/9/12 12:00", "2009/9/12 13:00", "2009/9/12 14:00", "2009/9/12 15:00", "2009/9/12 16:00", "2009/9/12 17:00", "2009/9/12 18:00", "2009/9/12 19:00", "2009/9/12 20:00", "2009/9/12 21:00", "2009/9/12 22:00", "2009/9/12 23:00", "2009/9/13 0:00", "2009/9/13 1:00", "2009/9/13 2:00", "2009/9/13 3:00", "2009/9/13 4:00", "2009/9/13 5:00", "2009/9/13 6:00", "2009/9/13 7:00", "2009/9/13 8:00", "2009/9/13 9:00", "2009/9/13 10:00", "2009/9/13 11:00", "2009/9/13 12:00", "2009/9/13 13:00", "2009/9/13 14:00", "2009/9/13 15:00", "2009/9/13 16:00", "2009/9/13 17:00", "2009/9/13 18:00", "2009/9/13 19:00", "2009/9/13 20:00", "2009/9/13 21:00", "2009/9/13 22:00", "2009/9/13 23:00", "2009/9/14 0:00", "2009/9/14 1:00", "2009/9/14 2:00", "2009/9/14 3:00", "2009/9/14 4:00", "2009/9/14 5:00", "2009/9/14 6:00", "2009/9/14 7:00", "2009/9/14 8:00", "2009/9/14 9:00", "2009/9/14 10:00", "2009/9/14 11:00", "2009/9/14 12:00", "2009/9/14 13:00", "2009/9/14 14:00", "2009/9/14 15:00", "2009/9/14 16:00", "2009/9/14 17:00", "2009/9/14 18:00", "2009/9/14 19:00", "2009/9/14 20:00", "2009/9/14 21:00", "2009/9/14 22:00", "2009/9/14 23:00", "2009/9/15 0:00", "2009/9/15 1:00", "2009/9/15 2:00", "2009/9/15 3:00", "2009/9/15 4:00", "2009/9/15 5:00", "2009/9/15 6:00", "2009/9/15 7:00", "2009/9/15 8:00", "2009/9/15 9:00", "2009/9/15 10:00", "2009/9/15 11:00", "2009/9/15 12:00", "2009/9/15 13:00", "2009/9/15 14:00", "2009/9/15 15:00", "2009/9/15 16:00", "2009/9/15 17:00", "2009/9/15 18:00", "2009/9/15 19:00", "2009/9/15 20:00", "2009/9/15 21:00", "2009/9/15 22:00", "2009/9/15 23:00", "2009/9/16 0:00", "2009/9/16 1:00", "2009/9/16 2:00", "2009/9/16 3:00", "2009/9/16 4:00", "2009/9/16 5:00", "2009/9/16 6:00", "2009/9/16 7:00", "2009/9/16 8:00", "2009/9/16 9:00", "2009/9/16 10:00", "2009/9/16 11:00", "2009/9/16 12:00", "2009/9/16 13:00", "2009/9/16 14:00", "2009/9/16 15:00", "2009/9/16 16:00", "2009/9/16 17:00", "2009/9/16 18:00", "2009/9/16 19:00", "2009/9/16 20:00", "2009/9/16 21:00", "2009/9/16 22:00", "2009/9/16 23:00", "2009/9/17 0:00", "2009/9/17 1:00", "2009/9/17 2:00", "2009/9/17 3:00", "2009/9/17 4:00", "2009/9/17 5:00", "2009/9/17 6:00", "2009/9/17 7:00", "2009/9/17 8:00", "2009/9/17 9:00", "2009/9/17 10:00", "2009/9/17 11:00", "2009/9/17 12:00", "2009/9/17 13:00", "2009/9/17 14:00", "2009/9/17 15:00", "2009/9/17 16:00", "2009/9/17 17:00", "2009/9/17 18:00", "2009/9/17 19:00", "2009/9/17 20:00", "2009/9/17 21:00", "2009/9/17 22:00", "2009/9/17 23:00", "2009/9/18 0:00", "2009/9/18 1:00", "2009/9/18 2:00", "2009/9/18 3:00", "2009/9/18 4:00", "2009/9/18 5:00", "2009/9/18 6:00", "2009/9/18 7:00", "2009/9/18 8:00", "2009/9/18 9:00", "2009/9/18 10:00", "2009/9/18 11:00", "2009/9/18 12:00", "2009/9/18 13:00", "2009/9/18 14:00", "2009/9/18 15:00", "2009/9/18 16:00", "2009/9/18 17:00", "2009/9/18 18:00", "2009/9/18 19:00", "2009/9/18 20:00", "2009/9/18 21:00", "2009/9/18 22:00", "2009/9/18 23:00", "2009/9/19 0:00", "2009/9/19 1:00", "2009/9/19 2:00", "2009/9/19 3:00", "2009/9/19 4:00", "2009/9/19 5:00", "2009/9/19 6:00", "2009/9/19 7:00", "2009/9/19 8:00", "2009/9/19 9:00", "2009/9/19 10:00", "2009/9/19 11:00", "2009/9/19 12:00", "2009/9/19 13:00", "2009/9/19 14:00", "2009/9/19 15:00", "2009/9/19 16:00", "2009/9/19 17:00", "2009/9/19 18:00", "2009/9/19 19:00", "2009/9/19 20:00", "2009/9/19 21:00", "2009/9/19 22:00", "2009/9/19 23:00", "2009/9/20 0:00", "2009/9/20 1:00", "2009/9/20 2:00", "2009/9/20 3:00", "2009/9/20 4:00", "2009/9/20 5:00", "2009/9/20 6:00", "2009/9/20 7:00", "2009/9/20 8:00", "2009/9/20 9:00", "2009/9/20 10:00", "2009/9/20 11:00", "2009/9/20 12:00", "2009/9/20 13:00", "2009/9/20 14:00", "2009/9/20 15:00", "2009/9/20 16:00", "2009/9/20 17:00", "2009/9/20 18:00", "2009/9/20 19:00", "2009/9/20 20:00", "2009/9/20 21:00", "2009/9/20 22:00", "2009/9/20 23:00", "2009/9/21 0:00", "2009/9/21 1:00", "2009/9/21 2:00", "2009/9/21 3:00", "2009/9/21 4:00", "2009/9/21 5:00", "2009/9/21 6:00", "2009/9/21 7:00", "2009/9/21 8:00", "2009/9/21 9:00", "2009/9/21 10:00", "2009/9/21 11:00", "2009/9/21 12:00", "2009/9/21 13:00", "2009/9/21 14:00", "2009/9/21 15:00", "2009/9/21 16:00", "2009/9/21 17:00", "2009/9/21 18:00", "2009/9/21 19:00", "2009/9/21 20:00", "2009/9/21 21:00", "2009/9/21 22:00", "2009/9/21 23:00", "2009/9/22 0:00", "2009/9/22 1:00", "2009/9/22 2:00", "2009/9/22 3:00", "2009/9/22 4:00", "2009/9/22 5:00", "2009/9/22 6:00", "2009/9/22 7:00", "2009/9/22 8:00", "2009/9/22 9:00", "2009/9/22 10:00", "2009/9/22 11:00", "2009/9/22 12:00", "2009/9/22 13:00", "2009/9/22 14:00", "2009/9/22 15:00", "2009/9/22 16:00", "2009/9/22 17:00", "2009/9/22 18:00", "2009/9/22 19:00", "2009/9/22 20:00", "2009/9/22 21:00", "2009/9/22 22:00", "2009/9/22 23:00", "2009/9/23 0:00", "2009/9/23 1:00", "2009/9/23 2:00", "2009/9/23 3:00", "2009/9/23 4:00", "2009/9/23 5:00", "2009/9/23 6:00", "2009/9/23 7:00", "2009/9/23 8:00", "2009/9/23 9:00", "2009/9/23 10:00", "2009/9/23 11:00", "2009/9/23 12:00", "2009/9/23 13:00", "2009/9/23 14:00", "2009/9/23 15:00", "2009/9/23 16:00", "2009/9/23 17:00", "2009/9/23 18:00", "2009/9/23 19:00", "2009/9/23 20:00", "2009/9/23 21:00", "2009/9/23 22:00", "2009/9/23 23:00", "2009/9/24 0:00", "2009/9/24 1:00", "2009/9/24 2:00", "2009/9/24 3:00", "2009/9/24 4:00", "2009/9/24 5:00", "2009/9/24 6:00", "2009/9/24 7:00", "2009/9/24 8:00", "2009/9/24 9:00", "2009/9/24 10:00", "2009/9/24 11:00", "2009/9/24 12:00", "2009/9/24 13:00", "2009/9/24 14:00", "2009/9/24 15:00", "2009/9/24 16:00", "2009/9/24 17:00", "2009/9/24 18:00", "2009/9/24 19:00", "2009/9/24 20:00", "2009/9/24 21:00", "2009/9/24 22:00", "2009/9/24 23:00", "2009/9/25 0:00", "2009/9/25 1:00", "2009/9/25 2:00", "2009/9/25 3:00", "2009/9/25 4:00", "2009/9/25 5:00", "2009/9/25 6:00", "2009/9/25 7:00", "2009/9/25 8:00", "2009/9/25 9:00", "2009/9/25 10:00", "2009/9/25 11:00", "2009/9/25 12:00", "2009/9/25 13:00", "2009/9/25 14:00", "2009/9/25 15:00", "2009/9/25 16:00", "2009/9/25 17:00", "2009/9/25 18:00", "2009/9/25 19:00", "2009/9/25 20:00", "2009/9/25 21:00", "2009/9/25 22:00", "2009/9/25 23:00", "2009/9/26 0:00", "2009/9/26 1:00", "2009/9/26 2:00", "2009/9/26 3:00", "2009/9/26 4:00", "2009/9/26 5:00", "2009/9/26 6:00", "2009/9/26 7:00", "2009/9/26 8:00", "2009/9/26 9:00", "2009/9/26 10:00", "2009/9/26 11:00", "2009/9/26 12:00", "2009/9/26 13:00", "2009/9/26 14:00", "2009/9/26 15:00", "2009/9/26 16:00", "2009/9/26 17:00", "2009/9/26 18:00", "2009/9/26 19:00", "2009/9/26 20:00", "2009/9/26 21:00", "2009/9/26 22:00", "2009/9/26 23:00", "2009/9/27 0:00", "2009/9/27 1:00", "2009/9/27 2:00", "2009/9/27 3:00", "2009/9/27 4:00", "2009/9/27 5:00", "2009/9/27 6:00", "2009/9/27 7:00", "2009/9/27 8:00", "2009/9/27 9:00", "2009/9/27 10:00", "2009/9/27 11:00", "2009/9/27 12:00", "2009/9/27 13:00", "2009/9/27 14:00", "2009/9/27 15:00", "2009/9/27 16:00", "2009/9/27 17:00", "2009/9/27 18:00", "2009/9/27 19:00", "2009/9/27 20:00", "2009/9/27 21:00", "2009/9/27 22:00", "2009/9/27 23:00", "2009/9/28 0:00", "2009/9/28 1:00", "2009/9/28 2:00", "2009/9/28 3:00", "2009/9/28 4:00", "2009/9/28 5:00", "2009/9/28 6:00", "2009/9/28 7:00", "2009/9/28 8:00", "2009/9/28 9:00", "2009/9/28 10:00", "2009/9/28 11:00", "2009/9/28 12:00", "2009/9/28 13:00", "2009/9/28 14:00", "2009/9/28 15:00", "2009/9/28 16:00", "2009/9/28 17:00", "2009/9/28 18:00", "2009/9/28 19:00", "2009/9/28 20:00", "2009/9/28 21:00", "2009/9/28 22:00", "2009/9/28 23:00", "2009/9/29 0:00", "2009/9/29 1:00", "2009/9/29 2:00", "2009/9/29 3:00", "2009/9/29 4:00", "2009/9/29 5:00", "2009/9/29 6:00", "2009/9/29 7:00", "2009/9/29 8:00", "2009/9/29 9:00", "2009/9/29 10:00", "2009/9/29 11:00", "2009/9/29 12:00", "2009/9/29 13:00", "2009/9/29 14:00", "2009/9/29 15:00", "2009/9/29 16:00", "2009/9/29 17:00", "2009/9/29 18:00", "2009/9/29 19:00", "2009/9/29 20:00", "2009/9/29 21:00", "2009/9/29 22:00", "2009/9/29 23:00", "2009/9/30 0:00", "2009/9/30 1:00", "2009/9/30 2:00", "2009/9/30 3:00", "2009/9/30 4:00", "2009/9/30 5:00", "2009/9/30 6:00", "2009/9/30 7:00", "2009/9/30 8:00", "2009/9/30 9:00", "2009/9/30 10:00", "2009/9/30 11:00", "2009/9/30 12:00", "2009/9/30 13:00", "2009/9/30 14:00", "2009/9/30 15:00", "2009/9/30 16:00", "2009/9/30 17:00", "2009/9/30 18:00", "2009/9/30 19:00", "2009/9/30 20:00", "2009/9/30 21:00", "2009/9/30 22:00", "2009/9/30 23:00",
- "2009/10/1 0:00", "2009/10/1 1:00", "2009/10/1 2:00", "2009/10/1 3:00", "2009/10/1 4:00", "2009/10/1 5:00", "2009/10/1 6:00", "2009/10/1 7:00", "2009/10/1 8:00", "2009/10/1 9:00", "2009/10/1 10:00", "2009/10/1 11:00", "2009/10/1 12:00", "2009/10/1 13:00", "2009/10/1 14:00", "2009/10/1 15:00", "2009/10/1 16:00", "2009/10/1 17:00", "2009/10/1 18:00", "2009/10/1 19:00", "2009/10/1 20:00", "2009/10/1 21:00", "2009/10/1 22:00", "2009/10/1 23:00", "2009/10/2 0:00", "2009/10/2 1:00", "2009/10/2 2:00", "2009/10/2 3:00", "2009/10/2 4:00", "2009/10/2 5:00", "2009/10/2 6:00", "2009/10/2 7:00", "2009/10/2 8:00", "2009/10/2 9:00", "2009/10/2 10:00", "2009/10/2 11:00", "2009/10/2 12:00", "2009/10/2 13:00", "2009/10/2 14:00", "2009/10/2 15:00", "2009/10/2 16:00", "2009/10/2 17:00", "2009/10/2 18:00", "2009/10/2 19:00", "2009/10/2 20:00", "2009/10/2 21:00", "2009/10/2 22:00", "2009/10/2 23:00", "2009/10/3 0:00", "2009/10/3 1:00", "2009/10/3 2:00", "2009/10/3 3:00", "2009/10/3 4:00", "2009/10/3 5:00", "2009/10/3 6:00", "2009/10/3 7:00", "2009/10/3 8:00", "2009/10/3 9:00", "2009/10/3 10:00", "2009/10/3 11:00", "2009/10/3 12:00", "2009/10/3 13:00", "2009/10/3 14:00", "2009/10/3 15:00", "2009/10/3 16:00", "2009/10/3 17:00", "2009/10/3 18:00", "2009/10/3 19:00", "2009/10/3 20:00", "2009/10/3 21:00", "2009/10/3 22:00", "2009/10/3 23:00", "2009/10/4 0:00", "2009/10/4 1:00", "2009/10/4 2:00", "2009/10/4 3:00", "2009/10/4 4:00", "2009/10/4 5:00", "2009/10/4 6:00", "2009/10/4 7:00", "2009/10/4 8:00", "2009/10/4 9:00", "2009/10/4 10:00", "2009/10/4 11:00", "2009/10/4 12:00", "2009/10/4 13:00", "2009/10/4 14:00", "2009/10/4 15:00", "2009/10/4 16:00", "2009/10/4 17:00", "2009/10/4 18:00", "2009/10/4 19:00", "2009/10/4 20:00", "2009/10/4 21:00", "2009/10/4 22:00", "2009/10/4 23:00", "2009/10/5 0:00", "2009/10/5 1:00", "2009/10/5 2:00", "2009/10/5 3:00", "2009/10/5 4:00", "2009/10/5 5:00", "2009/10/5 6:00", "2009/10/5 7:00", "2009/10/5 8:00", "2009/10/5 9:00", "2009/10/5 10:00", "2009/10/5 11:00", "2009/10/5 12:00", "2009/10/5 13:00", "2009/10/5 14:00", "2009/10/5 15:00", "2009/10/5 16:00", "2009/10/5 17:00", "2009/10/5 18:00", "2009/10/5 19:00", "2009/10/5 20:00", "2009/10/5 21:00", "2009/10/5 22:00", "2009/10/5 23:00", "2009/10/6 0:00", "2009/10/6 1:00", "2009/10/6 2:00", "2009/10/6 3:00", "2009/10/6 4:00", "2009/10/6 5:00", "2009/10/6 6:00", "2009/10/6 7:00", "2009/10/6 8:00", "2009/10/6 9:00", "2009/10/6 10:00", "2009/10/6 11:00", "2009/10/6 12:00", "2009/10/6 13:00", "2009/10/6 14:00", "2009/10/6 15:00", "2009/10/6 16:00", "2009/10/6 17:00", "2009/10/6 18:00", "2009/10/6 19:00", "2009/10/6 20:00", "2009/10/6 21:00", "2009/10/6 22:00", "2009/10/6 23:00", "2009/10/7 0:00", "2009/10/7 1:00", "2009/10/7 2:00", "2009/10/7 3:00", "2009/10/7 4:00", "2009/10/7 5:00", "2009/10/7 6:00", "2009/10/7 7:00", "2009/10/7 8:00", "2009/10/7 9:00", "2009/10/7 10:00", "2009/10/7 11:00", "2009/10/7 12:00", "2009/10/7 13:00", "2009/10/7 14:00", "2009/10/7 15:00", "2009/10/7 16:00", "2009/10/7 17:00", "2009/10/7 18:00", "2009/10/7 19:00", "2009/10/7 20:00", "2009/10/7 21:00", "2009/10/7 22:00", "2009/10/7 23:00", "2009/10/8 0:00", "2009/10/8 1:00", "2009/10/8 2:00", "2009/10/8 3:00", "2009/10/8 4:00", "2009/10/8 5:00", "2009/10/8 6:00", "2009/10/8 7:00", "2009/10/8 8:00", "2009/10/8 9:00", "2009/10/8 10:00", "2009/10/8 11:00", "2009/10/8 12:00", "2009/10/8 13:00", "2009/10/8 14:00", "2009/10/8 15:00", "2009/10/8 16:00", "2009/10/8 17:00", "2009/10/8 18:00", "2009/10/8 19:00", "2009/10/8 20:00", "2009/10/8 21:00", "2009/10/8 22:00", "2009/10/8 23:00", "2009/10/9 0:00", "2009/10/9 1:00", "2009/10/9 2:00", "2009/10/9 3:00", "2009/10/9 4:00", "2009/10/9 5:00", "2009/10/9 6:00", "2009/10/9 7:00", "2009/10/9 8:00", "2009/10/9 9:00", "2009/10/9 10:00", "2009/10/9 11:00", "2009/10/9 12:00", "2009/10/9 13:00", "2009/10/9 14:00", "2009/10/9 15:00", "2009/10/9 16:00", "2009/10/9 17:00", "2009/10/9 18:00", "2009/10/9 19:00", "2009/10/9 20:00", "2009/10/9 21:00", "2009/10/9 22:00", "2009/10/9 23:00", "2009/10/10 0:00", "2009/10/10 1:00", "2009/10/10 2:00", "2009/10/10 3:00", "2009/10/10 4:00", "2009/10/10 5:00", "2009/10/10 6:00", "2009/10/10 7:00", "2009/10/10 8:00", "2009/10/10 9:00", "2009/10/10 10:00", "2009/10/10 11:00", "2009/10/10 12:00", "2009/10/10 13:00", "2009/10/10 14:00", "2009/10/10 15:00", "2009/10/10 16:00", "2009/10/10 17:00", "2009/10/10 18:00", "2009/10/10 19:00", "2009/10/10 20:00", "2009/10/10 21:00", "2009/10/10 22:00", "2009/10/10 23:00", "2009/10/11 0:00", "2009/10/11 1:00", "2009/10/11 2:00", "2009/10/11 3:00", "2009/10/11 4:00", "2009/10/11 5:00", "2009/10/11 6:00", "2009/10/11 7:00", "2009/10/11 8:00", "2009/10/11 9:00", "2009/10/11 10:00", "2009/10/11 11:00", "2009/10/11 12:00", "2009/10/11 13:00", "2009/10/11 14:00", "2009/10/11 15:00", "2009/10/11 16:00", "2009/10/11 17:00", "2009/10/11 18:00", "2009/10/11 19:00", "2009/10/11 20:00", "2009/10/11 21:00", "2009/10/11 22:00", "2009/10/11 23:00", "2009/10/12 0:00", "2009/10/12 1:00", "2009/10/12 2:00", "2009/10/12 3:00", "2009/10/12 4:00", "2009/10/12 5:00", "2009/10/12 6:00", "2009/10/12 7:00", "2009/10/12 8:00", "2009/10/12 9:00", "2009/10/12 10:00", "2009/10/12 11:00", "2009/10/12 12:00", "2009/10/12 13:00", "2009/10/12 14:00", "2009/10/12 15:00", "2009/10/12 16:00", "2009/10/12 17:00", "2009/10/12 18:00", "2009/10/12 19:00", "2009/10/12 20:00", "2009/10/12 21:00", "2009/10/12 22:00", "2009/10/12 23:00", "2009/10/13 0:00", "2009/10/13 1:00", "2009/10/13 2:00", "2009/10/13 3:00", "2009/10/13 4:00", "2009/10/13 5:00", "2009/10/13 6:00", "2009/10/13 7:00", "2009/10/13 8:00", "2009/10/13 9:00", "2009/10/13 10:00", "2009/10/13 11:00", "2009/10/13 12:00", "2009/10/13 13:00", "2009/10/13 14:00", "2009/10/13 15:00", "2009/10/13 16:00", "2009/10/13 17:00", "2009/10/13 18:00", "2009/10/13 19:00", "2009/10/13 20:00", "2009/10/13 21:00", "2009/10/13 22:00", "2009/10/13 23:00", "2009/10/14 0:00", "2009/10/14 1:00", "2009/10/14 2:00", "2009/10/14 3:00", "2009/10/14 4:00", "2009/10/14 5:00", "2009/10/14 6:00", "2009/10/14 7:00", "2009/10/14 8:00", "2009/10/14 9:00", "2009/10/14 10:00", "2009/10/14 11:00", "2009/10/14 12:00", "2009/10/14 13:00", "2009/10/14 14:00", "2009/10/14 15:00", "2009/10/14 16:00", "2009/10/14 17:00", "2009/10/14 18:00", "2009/10/14 19:00", "2009/10/14 20:00", "2009/10/14 21:00", "2009/10/14 22:00", "2009/10/14 23:00", "2009/10/15 0:00", "2009/10/15 1:00", "2009/10/15 2:00", "2009/10/15 3:00", "2009/10/15 4:00", "2009/10/15 5:00", "2009/10/15 6:00", "2009/10/15 7:00", "2009/10/15 8:00", "2009/10/15 9:00", "2009/10/15 10:00", "2009/10/15 11:00", "2009/10/15 12:00", "2009/10/15 13:00", "2009/10/15 14:00", "2009/10/15 15:00", "2009/10/15 16:00", "2009/10/15 17:00", "2009/10/15 18:00", "2009/10/15 19:00", "2009/10/15 20:00", "2009/10/15 21:00", "2009/10/15 22:00", "2009/10/15 23:00", "2009/10/16 0:00", "2009/10/16 1:00", "2009/10/16 2:00", "2009/10/16 3:00", "2009/10/16 4:00", "2009/10/16 5:00", "2009/10/16 6:00", "2009/10/16 7:00", "2009/10/16 8:00", "2009/10/16 9:00", "2009/10/16 10:00", "2009/10/16 11:00", "2009/10/16 12:00", "2009/10/16 13:00", "2009/10/16 14:00", "2009/10/16 15:00", "2009/10/16 16:00", "2009/10/16 17:00", "2009/10/16 18:00", "2009/10/16 19:00", "2009/10/16 20:00", "2009/10/16 21:00", "2009/10/16 22:00", "2009/10/16 23:00", "2009/10/17 0:00", "2009/10/17 1:00", "2009/10/17 2:00", "2009/10/17 3:00", "2009/10/17 4:00", "2009/10/17 5:00", "2009/10/17 6:00", "2009/10/17 7:00", "2009/10/17 8:00", "2009/10/17 9:00", "2009/10/17 10:00", "2009/10/17 11:00", "2009/10/17 12:00", "2009/10/17 13:00", "2009/10/17 14:00", "2009/10/17 15:00", "2009/10/17 16:00", "2009/10/17 17:00", "2009/10/17 18:00", "2009/10/17 19:00", "2009/10/17 20:00", "2009/10/17 21:00", "2009/10/17 22:00", "2009/10/17 23:00", "2009/10/18 0:00", "2009/10/18 1:00", "2009/10/18 2:00", "2009/10/18 3:00", "2009/10/18 4:00", "2009/10/18 5:00", "2009/10/18 6:00", "2009/10/18 7:00", "2009/10/18 8:00"
- );
- option.xAxis(categoryAxis);
-
- Line line1 = new Line("流量");
- line1.data(0.97, 0.96, 0.96, 0.95, 0.95, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.93, 0.92, 0.91, 0.9, 0.89, 0.88, 0.87, 0.87, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.87, 0.88, 0.9, 0.93, 0.96, 0.99, 1.03, 1.06, 1.1, 1.14, 1.17, 1.2, 1.23, 1.26, 1.29, 1.33, 1.36, 1.4, 1.43, 1.45, 1.48, 1.49, 1.51, 1.51, 1.5, 1.49, 1.47, 1.44, 1.41, 1.37, 1.34, 1.3, 1.27, 1.24, 1.22, 1.2, 1.19, 1.18, 1.16, 1.15, 1.14, 1.13, 1.12, 1.11, 1.11, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.1, 1.09, 1.09, 1.08, 1.07, 1.06, 1.05, 1.04, 1.03, 1.03, 1.02, 1.01, 1.01, 1, 0.99, 0.98, 0.97, 0.96, 0.96, 0.95, 0.95, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.93, 0.92, 0.91, 0.9, 0.89, 0.88, 0.87, 0.87, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.85, 0.84, 0.83, 0.82, 0.81, 0.8, 0.8, 0.79, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.77, 0.75, 0.73, 0.71, 0.68, 0.65, 0.63, 0.61, 0.59, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.57, 0.57, 0.57, 0.56, 0.55, 0.55, 0.54, 0.54, 0.53, 0.52, 0.52, 0.51, 0.51, 0.5, 0.5, 0.49, 0.48, 0.48, 0.47, 0.47, 0.47, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.46, 0.52, 0.67, 0.9, 1.19, 1.52, 1.87, 2.22, 2.55, 2.84, 3.07, 3.22, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.28, 3.24, 3.13, 2.97, 2.77, 2.54, 2.3, 2.05, 1.82, 1.62, 1.46, 1.35, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.31, 1.3, 1.26, 1.21, 1.14, 1.06, 0.97, 0.89, 0.81, 0.74, 0.69, 0.65, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.63, 0.63, 0.62, 0.62, 0.61, 0.6, 0.59, 0.59, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.59, 0.61, 0.63, 0.65, 0.68, 0.71, 0.73, 0.75, 0.77, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.77, 0.75, 0.73, 0.71, 0.68, 0.65, 0.63, 0.61, 0.59, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.58, 0.59, 0.59, 0.6, 0.61, 0.62, 0.62, 0.63, 0.63, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.65, 0.66, 0.68, 0.69, 0.71, 0.73, 0.74, 0.76, 0.77, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.79, 0.81, 0.82, 0.84, 0.86, 0.88, 0.9, 0.92, 0.93, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.94, 0.93, 0.92, 0.91, 0.9, 0.89, 0.88, 0.87, 0.87, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.86, 0.85, 0.84, 0.82, 0.8, 0.78, 0.76, 0.75, 0.73, 0.72, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.72, 0.73, 0.74, 0.76, 0.78, 0.79, 0.82, 0.84, 0.86, 0.89, 0.91, 0.94, 0.97, 1, 1.02, 1.05, 1.08, 1.11, 1.14, 1.17, 1.19, 1.22, 1.25, 1.27, 1.29, 1.31, 1.33, 1.35, 1.36, 1.38, 1.39, 1.39, 1.4, 1.4, 1.4, 1.39, 1.37, 1.35, 1.32, 1.29, 1.26, 1.22, 1.18, 1.14, 1.1, 1.05, 1.01, 0.97, 0.93, 0.89, 0.85, 0.82, 0.78, 0.76, 0.74, 0.72, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.72, 0.73, 0.74, 0.75, 0.77, 0.78, 0.8, 0.82, 0.84, 0.87, 0.89, 0.92, 0.94, 0.97, 0.99, 1.02, 1.05, 1.08, 1.1, 1.13, 1.16, 1.18, 1.21, 1.23, 1.26, 1.28, 1.3, 1.32, 1.34, 1.35, 1.37, 1.38, 1.39, 1.4, 1.41, 1.41, 1.42, 1.42, 1.43, 1.43, 1.43, 1.44, 1.44, 1.44, 1.44, 1.45, 1.45, 1.45, 1.46, 1.46, 1.46, 1.47, 1.47, 1.48, 1.48, 1.49, 1.5, 1.51, 1.54, 1.62, 1.73, 1.88, 2.05, 2.24, 2.45, 2.67, 2.89, 3.11, 3.31, 3.51, 3.69, 3.86, 4.03, 4.18, 4.33, 4.48, 4.62, 4.76, 4.89, 5.02, 5.16, 5.29, 5.43, 5.57, 5.71, 5.86, 6.02, 6.18, 6.36, 6.54, 6.73, 6.93, 7.15, 7.38, 7.62, 7.88, 8.16, 8.46, 8.77, 9.11, 9.46, 9.84, 10.24, 10.67, 11.12, 11.6, 12.3, 13.66, 16, 38.43, 82.21, 146.6, 218.7, 226, 225.23, 223.08, 219.78, 212, 199.82, 184.6, 168, 151.65, 137.21, 126.31, 119.94, 115.52, 112.06, 108.92, 105.44, 101, 94.56, 86.36, 77.67, 69.76, 63.9, 60.38, 57.41, 54.84, 52.57, 50.56, 48.71, 46.97, 45.25, 43.48, 41.6, 39.5, 37.19, 34.81, 32.46, 30.27, 28.36, 26.85, 25.86, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.27, 24.65, 23.7, 22.52, 21.17, 19.75, 18.33, 16.98, 15.8, 14.85, 14.23, 14, 14.02, 14.08, 14.17, 14.29, 14.44, 14.61, 14.8, 15.01, 15.23, 15.47, 15.71, 15.95, 16.19, 16.43, 16.67, 16.89, 17.1, 17.29, 17.46, 17.61, 17.73, 17.82, 17.88, 17.9, 17.63, 16.88, 15.75, 14.33, 12.71, 10.98, 9.23, 7.56, 6.05, 4.81, 3.92, 3.47, 3.28, 3.1, 2.93, 2.76, 2.61, 2.46, 2.32, 2.19, 2.07, 1.96, 1.85, 1.75, 1.66, 1.58, 1.51, 1.44, 1.39, 1.34, 1.29, 1.26, 1.23, 1.22, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.21, 1.21, 1.21, 1.21, 1.22, 1.22, 1.22, 1.23, 1.23, 1.23, 1.24, 1.24, 1.25, 1.25, 1.25, 1.26, 1.26, 1.27, 1.27, 1.27, 1.28, 1.28, 1.28, 1.29, 1.29, 1.29, 1.29, 1.3, 1.3, 1.3, 1.3, 1.3, 1.3, 1.3, 1.3, 1.3, 1.3, 1.3, 1.29, 1.29, 1.29, 1.29, 1.28, 1.28, 1.28, 1.27, 1.27, 1.26, 1.25, 1.25, 1.24, 1.23, 1.23, 1.22, 1.21, 1.2, 1.16, 1.06, 0.95, 0.83, 0.74, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.71, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.69, 0.69, 0.69, 0.69, 0.69, 0.69, 0.69, 0.69, 0.68, 0.68, 0.68, 0.68, 0.68, 0.68, 0.67, 0.67, 0.67, 0.67, 0.67, 0.67, 0.67, 0.66, 0.66, 0.66, 0.66, 0.66, 0.66, 0.66, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.65, 0.66, 0.68, 0.69, 0.71, 0.73, 0.74, 0.76, 0.77, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.78, 0.8, 0.86, 0.95, 1.08, 1.25, 1.46, 1.7, 1.97, 2.28, 2.63, 3.01, 3.42, 3.87, 4.35, 4.86, 5.4, 5.98, 6.59, 7.92, 10.49, 14.04, 18.31, 23.04, 27.98, 32.87, 37.45, 41.46, 44.64, 46.74, 47.5, 46.86, 45.16, 42.77, 40.04, 37.33, 35, 32.74, 30.21, 27.7, 25.5, 23.9, 23.2, 23.06, 22.94, 22.84, 22.77, 22.72, 22.7, 22.8, 23.23, 23.95, 24.91, 26.04, 27.3, 28.76, 30.7, 33.39, 37.12, 42.15, 48.77, 65.22, 252.1, 257, 237.32, 221.19, 212, 208.67, 206.89, 205.2, 202.15, 189.82, 172, 165.3, 160.49, 156.8, 153.44, 149.62, 144.6, 138.27, 131, 123.11, 114.9, 106.69, 98.79, 91.5, 85.13, 80, 75.53, 71.03, 66.65, 62.54, 58.85, 55.73, 53.31, 51.75, 51.2, 56.53, 68.25, 80, 91.01, 102.03, 109, 112.37, 115.29, 117.68, 119.48, 120.61, 121, 119.45, 115.57, 110.52, 105.47, 101.58, 100, 99.97, 99.94, 99.92, 99.9, 99.88, 99.86, 99.85, 99.84, 99.83, 99.82, 99.81, 99.81, 99.8, 99.8, 99.8, 122.15, 163.65, 186, 182.96, 175.15, 164.56, 153.18, 143, 136, 131.37, 126.98, 122.81, 118.85, 115.09, 111.52, 108.13, 104.9, 101.83, 98.9, 96.11, 93.44, 90.87, 88.41, 86.04, 83.74, 81.51, 79.33, 77.2, 75.1, 73.02, 70.95, 68.88, 66.8, 64.87, 63.14, 61.4, 59.53, 57.67, 56, 54.6, 53.36, 52.2, 51.05, 49.85, 48.5, 46.87, 44.92, 42.74, 40.42, 38.04, 35.69, 33.46, 31.44, 29.72, 28.38, 27.51, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.2, 27.14, 26.97, 26.7, 26.35, 25.95, 25.49, 25.02, 24.53, 24.04, 23.58, 23.16, 22.8, 22.46, 22.11, 21.75, 21.39, 21.03, 20.69, 20.36, 20.05, 19.78, 19.54, 19.35, 19.2, 19.09, 19, 18.92, 18.85, 18.79, 18.74, 18.68, 18.62, 18.56, 18.49, 18.4, 18.3, 18.17, 18.02, 17.83, 17.63, 17.41, 17.18, 16.93, 16.68, 16.43, 16.18, 15.93, 15.7, 15.47, 15.22, 14.97, 14.71, 14.45, 14.18, 13.93, 13.68, 13.44, 13.21, 13, 12.8, 12.62, 12.46, 12.31, 12.16, 12.03, 11.89, 11.76, 11.62, 11.48, 11.33, 11.17, 11, 10.81, 10.59, 10.36, 10.12, 9.86, 9.61, 9.36, 9.12, 8.89, 8.68, 8.5, 8.35, 8.21, 8.08, 7.94, 7.81, 7.68, 7.56, 7.46, 7.36, 7.29, 7.23, 7.19, 7.18, 7.51, 8.42, 9.81, 11.58, 13.63, 15.86, 18.16, 20.44, 22.58, 24.49, 26.06, 27.2, 28.08, 28.95, 29.81, 30.65, 31.48, 32.28, 33.07, 33.82, 34.55, 35.25, 35.92, 36.56, 37.15, 37.71, 38.23, 38.7, 39.13, 39.5, 39.83, 40.1, 40.31, 40.47, 40.57, 40.6, 40.49, 40.16, 39.64, 38.94, 38.09, 37.1, 36, 34.79, 33.51, 32.17, 30.79, 29.39, 27.99, 26.6, 25.25, 23.96, 22.75, 21.63, 20.63, 19.76, 19.04, 18.49, 18.14, 18, 17.97, 17.95, 17.94, 17.92, 17.91, 17.9, 17.89, 17.88, 17.87, 17.85, 17.83, 17.8, 17.7, 17.46, 17.13, 16.7, 16.21, 15.68, 15.13, 14.57, 14.04, 13.56, 13.14, 12.8, 12.52, 12.27, 12.02, 11.79, 11.57, 11.37, 11.16, 10.97, 10.78, 10.59, 10.39, 10.2, 10.01, 9.81, 9.63, 9.44, 9.26, 9.08, 8.9, 8.73, 8.56, 8.39, 8.22, 8.06, 7.9, 7.73, 7.57, 7.41, 7.25, 7.09, 6.94, 6.79, 6.65, 6.52, 6.4, 6.28, 6.17, 6.08, 5.98, 5.9, 5.81, 5.73, 5.65, 5.57, 5.49, 5.41, 5.32, 5.23, 5.14, 5.04, 4.94, 4.84, 4.74, 4.63, 4.53, 4.43, 4.33, 4.23, 4.13, 4.03, 3.93, 3.81, 3.69, 3.57, 3.45, 3.33, 3.22, 3.12, 3.04, 2.98, 2.93, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.92, 2.9, 2.86, 2.8, 2.71, 2.62, 2.52, 2.42, 2.33, 2.24, 2.18, 2.14, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.12, 2.1, 2.06, 2, 1.91, 1.82, 1.71, 1.61, 1.5, 1.4, 1.32, 1.25, 1.2, 1.16, 1.13, 1.1, 1.06, 1.03, 1, 0.97, 0.93, 0.9, 0.87, 0.85, 0.82, 0.79, 0.77, 0.74, 0.72, 0.69, 0.67, 0.65, 0.63, 0.61, 0.59, 0.58, 0.56, 0.54, 0.53, 0.52, 0.51, 0.5, 0.49, 0.48, 0.48, 0.47, 0.47, 0.46, 0.46, 0.47, 0.48, 0.5, 0.53, 0.56, 0.59, 0.62, 0.64, 0.67, 0.69, 0.7, 0.71, 0.71, 0.71, 0.71, 0.7, 0.7, 0.7, 0.69, 0.69, 0.69, 0.68, 0.68, 0.67, 0.67, 0.67, 0.66, 0.66, 0.65, 0.65, 0.65, 0.65, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.64, 0.65, 0.65, 0.65, 0.66, 0.66, 0.67, 0.68, 0.69, 0.69, 0.7, 0.71, 0.73, 0.74, 0.75, 0.76, 0.78, 0.8, 0.81, 0.83, 0.85, 0.87, 0.89, 0.92, 0.94, 0.97, 0.99, 1.02, 1.05, 1.08, 1.11, 1.15, 1.18, 1.32, 1.66, 2.21, 2.97, 3.94, 5.11, 6.5, 8.1, 9.9, 11.92, 14.15, 16.6, 22.3, 22.8, 24.48, 30.38, 35.74, 42.4, 57.14, 94.04, 112.9, 123.4, 130.4, 130, 119.4, 120.7, 116.8, 118.1, 119.4, 124.8, 143.5, 204, 294, 319.2, 328.4, 365, 350.8, 347.6, 347.6, 325, 331.6, 319.2, 308, 308, 308, 308, 296.8, 300, 281, 278.4, 270.6, 271, 253.6, 233.5, 219.2, 207.8, 205.9, 204, 189.6, 178.8, 173.4, 160, 154.4, 146, 145, 140.5, 130.4, 126.2, 116.8, 112.9, 106.5, 101.6, 98.51, 82.67, 67.3, 80.05, 76.12, 72.3, 71.02, 69.78, 67.3, 67.3, 68.54, 57.6, 71.02, 66.06, 59.12, 57.14, 55.16, 55.16, 52.19, 52.19, 51.2, 48.56, 44.16, 43, 45.92, 49.44, 44.16, 36.48, 35.74, 35, 32.36, 37.22, 32.36, 32.36, 32.36, 33.68, 32.36, 31.7, 35.74, 29.72, 32.36, 30.38, 29.72, 28.4, 28.4, 28.4, 27.28, 25.6, 25.04, 23.92, 22.3, 21.8, 21.8, 21.8, 22.8, 21.8, 25.6, 22.8, 22.8, 17.8, 16.04, 16.04, 16.04, 16.04, 16.04, 16.04, 16.04, 16.04, 16.04, 16.04, 15.02, 14, 14.03, 14.11, 14.25, 14.45, 14.72, 15.06, 15.46, 15.95, 16.51, 17.15, 17.87, 18.69, 19.59, 20.59, 21.69, 22.88, 24.18, 25.59, 27.1, 28.73, 30.48, 32.34, 34.33, 36.44, 38.69, 41.06, 43.57, 46.22, 49.01, 51.95, 55.04, 58.27, 61.66, 65.21, 68.92, 72.8, 88.09, 104.9, 105.7, 110.3, 111.6, 110.3, 106.5, 105.7, 103.3, 100, 97.02, 98.8, 91.07, 83.98, 88.09, 81.36, 78.74, 77.43, 77.43, 73.5, 74.81, 72.63, 68.58, 66.4, 68.54, 69.78, 67.3, 64.82, 61.1, 59.12, 56.15, 53.18, 50.32, 49.44, 44.16, 36.5, 42.4, 37.96, 37.22, 33.68, 36.48, 35.74, 35, 35, 37.22, 37.22, 39.44, 32.6, 34.54, 36.48, 35.74, 34.34, 33.68, 33.02, 31.04, 29.72, 29.72, 29.72, 26.16, 25.6, 29.72, 18.3, 22.3, 21.3, 21.8, 21.8, 20.3, 20.8, 25.04, 25.04, 25.6, 25.6, 25.04, 25.6, 25.04, 25.6, 23.92, 25.04, 21.3, 21.8, 22.3, 21.8, 20.8, 16.1, 20.3, 18.3, 13.22, 19.3, 19.3, 18.3, 14.4, 13.86, 13.36, 12.9, 12.48, 12.1, 11.75, 11.43, 11.15, 10.9, 10.67, 10.48, 10.31, 10.16, 10.04, 9.93, 9.85, 9.78, 9.73, 9.69, 9.67, 9.65, 9.65, 12.08, 8.67, 11.7, 11.38, 10.65, 9.84, 9.32, 9.07, 8.85, 8.66, 8.49, 8.35, 8.22, 8.1, 7.98, 7.86, 7.74, 7.61, 7.47, 7.31, 7.14, 6.96, 6.78, 6.58, 6.39, 6.19, 5.99, 5.78, 5.58, 5.39, 5.2, 5.01, 4.83, 4.67, 4.51, 4.37, 4.24, 4.12, 4.02, 3.95, 3.89, 3.85, 3.84, 4.41, 5.77, 7.39, 8.75, 9.32, 9.18, 9, 8.94, 8.88, 8.83, 8.78, 8.73, 8.68, 8.64, 8.6, 8.56, 8.53, 8.5, 8.47, 8.45, 8.42, 8.4, 8.39, 8.37, 8.36, 8.35, 8.35, 8.34, 8.34, 8.67, 9.65, 9.62, 9.53, 9.4, 9.21, 8.98, 8.7, 8.4, 8.06, 7.69, 7.3, 6.89, 6.47, 6.03, 5.59, 5.14, 4.7, 4.26, 3.83, 3.42, 3.02, 2.65, 2.3, 1.98, 1.7, 1.45, 1.25, 1.09, 0.99, 0.94, 0.92, 0.91, 0.89, 0.87, 0.85, 0.84, 0.82, 0.81, 0.79, 0.78, 0.77, 0.75, 0.74, 0.73, 0.72, 0.71, 0.7, 0.69, 0.68, 0.67, 0.66, 0.65, 0.64, 0.64, 0.63, 0.63, 0.62, 0.62, 0.61, 0.61, 0.61, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.6, 0.61, 0.61, 0.61, 0.61, 0.61, 0.61, 0.62, 0.62, 0.62, 0.62, 0.63, 0.63, 0.63, 0.63, 0.63, 0.64, 0.64, 0.64, 0.64, 0.64, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.65, 0.64, 0.63, 0.62, 0.6, 0.59, 0.57, 0.55, 0.54, 0.53, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.51, 0.51, 0.51, 0.5, 0.5, 0.49, 0.48, 0.47, 0.47, 0.46, 0.45, 0.45, 0.44, 0.43, 0.42, 0.42, 0.41, 0.41, 0.41, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.41, 0.42, 0.43, 0.44, 0.46, 0.48, 0.5, 0.53, 0.55, 0.58, 0.61, 0.64, 0.67, 0.7, 0.73, 0.77, 0.8, 0.83, 0.87, 0.9, 0.93, 0.96, 0.99, 1.02, 1.05, 1.08, 1.1, 1.12, 1.14, 1.16, 1.17, 1.18, 1.19, 1.2, 1.2, 1.2, 1.19, 1.17, 1.15, 1.12, 1.09, 1.06, 1.02, 0.98, 0.94, 0.9, 0.86, 0.82, 0.78, 0.74, 0.7, 0.66, 0.63, 0.6, 0.57, 0.55, 0.53, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.52, 0.51, 0.51, 0.5, 0.5, 0.49, 0.49, 0.48, 0.47, 0.47, 0.47, 0.46, 0.46, 0.45, 0.45, 0.45, 0.44, 0.44, 0.44, 0.43, 0.43, 0.43, 0.42, 0.42, 0.42, 0.41, 0.41, 0.41, 0.41, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.41, 0.42, 0.42, 0.42, 0.42, 0.42, 0.42, 0.42, 0.42, 0.42, 0.43, 0.43, 0.43, 0.43, 0.43, 0.43, 0.44, 0.44, 0.44, 0.44, 0.44, 0.44, 0.45, 0.45, 0.45)
- .itemStyle().normal().areaStyle().typeDefault();
- Line line2 = new Line("降雨量");
- line2.yAxisIndex(1).itemStyle().normal().areaStyle().typeDefault();
-
-
- line2.data(getData());
- option.series(line1, line2);
- option.exportToHtml("line6.html");
- option.view();
- }
-
- public List