You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by yu...@apache.org on 2020/01/10 11:18:10 UTC

[incubator-echarts] branch fix-11517 created (now 0607db0)

This is an automated email from the ASF dual-hosted git repository.

yufeng04 pushed a change to branch fix-11517
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git.


      at 0607db0  fix bug #11517 the precision of markLine

This branch includes the following new commits:

     new 0607db0  fix bug #11517 the precision of markLine

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[incubator-echarts] 01/01: fix bug #11517 the precision of markLine

Posted by yu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yufeng04 pushed a commit to branch fix-11517
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git

commit 0607db01bb2e798794de5cce927f86ebb79e39e6
Author: yufeng04 <74...@qq.com>
AuthorDate: Fri Jan 10 19:17:25 2020 +0800

    fix bug #11517 the precision of markLine
---
 src/component/marker/MarkLineModel.js |   2 +-
 src/component/marker/MarkLineView.js  |   5 +-
 test/markLine-precision.html          | 166 ++++++++++++++++++++++++++++++++++
 3 files changed, 171 insertions(+), 2 deletions(-)

diff --git a/src/component/marker/MarkLineModel.js b/src/component/marker/MarkLineModel.js
index 077e5b9..2d0a4a6 100644
--- a/src/component/marker/MarkLineModel.js
+++ b/src/component/marker/MarkLineModel.js
@@ -32,7 +32,7 @@ export default MarkerModel.extend({
 
         //symbolRotate: 0,
 
-        precision: 2,
+        // precision: 2,
         tooltip: {
             trigger: 'item'
         },
diff --git a/src/component/marker/MarkLineView.js b/src/component/marker/MarkLineView.js
index eb75ee7..8d3fac9 100644
--- a/src/component/marker/MarkLineView.js
+++ b/src/component/marker/MarkLineView.js
@@ -67,9 +67,12 @@ var markLineTransform = function (seriesModel, coordSys, mlModel, item) {
         mlTo.coord[baseIndex] = Infinity;
 
         var precision = mlModel.get('precision');
-        if (precision >= 0 && typeof value === 'number') {
+        if (precision && precision >= 0 && typeof value === 'number') {
             value = +value.toFixed(Math.min(precision, 20));
         }
+        if (precision == null && mlType === 'average') {
+            value = +value.toFixed(2);
+        }
 
         mlFrom.coord[valueIndex] = mlTo.coord[valueIndex] = value;
 
diff --git a/test/markLine-precision.html b/test/markLine-precision.html
new file mode 100644
index 0000000..9794f8d
--- /dev/null
+++ b/test/markLine-precision.html
@@ -0,0 +1,166 @@
+<!DOCTYPE html>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+
+<html>
+
+<head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1" />
+    <script src="lib/esl.js"></script>
+    <script src="lib/config.js"></script>
+    <script src="lib/jquery.min.js"></script>
+    <script src="lib/facePrint.js"></script>
+    <script src="lib/testHelper.js"></script>
+    <!-- <script src="ut/lib/canteen.js"></script> -->
+    <link rel="stylesheet" href="lib/reset.css" />
+</head>
+
+<body>
+    <style>
+    </style>
+
+
+
+    <div id="main0"></div>
+    <div id="main1"></div>
+
+
+
+
+
+
+
+
+    <script>
+        require(['echarts'/*, 'map/js/china' */], function (echarts) {
+            var option0;
+            var option1;
+            // $.getJSON('./data/nutrients.json', function (data) {});
+
+            option0 = {
+                xAxis: {
+                    type: 'category',
+                    boundaryGap: false,
+                    data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
+                },
+                yAxis: {
+                    type: 'value'
+                },
+                series: [
+                    {
+                        type: 'line',
+                        data: [.012345, -.0234, .0257, .084678, .038245, .002578, 0.0546],
+                        markLine: {
+                            data: [
+                                {
+                                    type: 'max'
+                                },
+                                {
+                                    type: 'min'
+                                },
+                                {
+                                    type: 'average'
+                                },
+                                {
+                                    type: 'median'
+                                },
+                                {
+                                    xAxis: '周二'
+                                },
+                                {
+                                    yAxis: 0.01234567
+                                }
+                            ]
+                        }
+                    }
+                ]
+            };
+
+            var chart0 = testHelper.create(echarts, 'main0', {
+                title: [
+                    'Configuration without precision',
+                    'The precision of average is 2',
+                    'The precision of other type is the precision of value'
+                ],
+                option: option0
+                // height: 300,
+                // buttons: [{text: 'btn-txt', onclick: function () {}}],
+                // recordCanvas: true,
+            });
+
+            option1 = {
+                xAxis: {
+                    type: 'category',
+                    boundaryGap: false,
+                    data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
+                },
+                yAxis: {
+                    type: 'value'
+                },
+                series: [
+                    {
+                        type: 'line',
+                        data: [.01238, -.02323, .02299, .08, .03152, .00212, 0.0386],
+                        markLine: {
+                            data: [
+                                {
+                                    type: 'max'
+                                },
+                                {
+                                    type: 'min'
+                                },
+                                {
+                                    type: 'average'
+                                },
+                                {
+                                    type: 'median'
+                                },
+                                {
+                                    xAxis: '周二'
+                                },
+                                {
+                                    yAxis: 0.01234567
+                                }
+                            ],
+                            precision: 3
+                        }
+                    }
+                ]
+            };
+
+            var chart1 = testHelper.create(echarts, 'main1', {
+                title: [
+                    'Precision of configuration is 3',
+                    'The precision of max is 2, because the value is 0.08',
+                    'The precision of other type is 3'
+                ],
+                option: option1
+                // height: 300,
+                // buttons: [{text: 'btn-txt', onclick: function () {}}],
+                // recordCanvas: true,
+            });
+        });
+    </script>
+
+
+</body>
+
+</html>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org