fix(axis): charts render abnormally when `yAxis.max` is set to be a value less than the min value of the series data.
diff --git a/src/coord/scaleRawExtentInfo.ts b/src/coord/scaleRawExtentInfo.ts
index 45d2dc7..bdc87ea 100644
--- a/src/coord/scaleRawExtentInfo.ts
+++ b/src/coord/scaleRawExtentInfo.ts
@@ -201,11 +201,6 @@
         (min == null || !isFinite(min)) && (min = NaN);
         (max == null || !isFinite(max)) && (max = NaN);
 
-        if (min > max) {
-            min = NaN;
-            max = NaN;
-        }
-
         const isBlank = eqNaN(min)
             || eqNaN(max)
             || (isOrdinal && !axisDataLen);
diff --git a/test/axis-filter-extent2.html b/test/axis-filter-extent2.html
index 72bd533..c2dbbcd 100644
--- a/test/axis-filter-extent2.html
+++ b/test/axis-filter-extent2.html
@@ -37,7 +37,7 @@
 
 
         <div id="main-stack-extreme"></div>
-
+        <div id="main2"></div>
 
         <script>
         require(['echarts'], function (echarts) {
@@ -152,6 +152,46 @@
         });
         </script>
 
+        <script>
+            require(['echarts'], function (echarts) {
+
+                var option = option = {
+                    xAxis: {
+                        type: 'category',
+                        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
+                    },
+                    yAxis: {
+                        type: 'value',
+                        // it works
+                        // max: 820
+                        // less than the min value of data
+                        max: 500
+                    },
+                    series: [
+                        {
+                            data: [820, 932, 901, 934, 1290, 1330, 1320],
+                            type: 'line'
+                        },
+                        {
+                            data: [820, 932, 901, 934, 1290, 1330, 1320],
+                            type: 'bar'
+                        }
+                    ]
+                };
+
+                var chart = testHelper.create(echarts, 'main2', {
+                    title: [
+                        'The **line** series should be **invisible**',
+                        'The **bar** series should be **partially visible**',
+                        'The y-axis should be shown',
+                        'The max value of y-axis should be 500'
+                    ],
+                    option: option,
+                    height: 300
+                });
+            });
+        </script>
+
 
     </body>
 </html>