/
githubmirror
/
echarts
Обзор
Документация
Войти
/
githubmirror
/
echarts
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/gauge-case.html
218 строк
7 KB
ZeekoZhu
test(gauge): add reproduce of #17663
24 сен 2022, 07:51
Не верифицирован
24 сен 2022, 07:51
81cbfcb
Код
Авторство
О чём код?
<!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/simpleRequire.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> <div id="main2"></div> <div id="main3-1"></div> <div id="main3-2"></div> <script> require(['echarts'/*, 'map/js/china' */], function (echarts) { var option = { tooltip: { formatter: '{a} <br/>{b} : {c}%' }, toolbox: { feature: { restore: {}, saveAsImage: {} } }, series: { type: 'gauge', center: ["50%", "50%"], radius: '70%', startAngle: 150, endAngle: -20, min: 0, max: 2000, progress: { show: true, width: 18 }, axisLabel: { distance: 30, rotate: 50 }, data: [ { value: 0 } ] } }; var chart = testHelper.create(echarts, 'main0', { title: [ 'Regression Test from #14162', 'Should not display a circle' ], option: option // height: 1200, // buttons: [{text: 'btn-txt', onclick: function () {}}], // recordCanvas: true, }); }); </script> <script> require(['echarts'], function (echarts) { var option = { series: [{ type: 'gauge', startAngle: 200, endAngle: -20, clockwise: true, data: [ { value: 0, name: 'SCORE' } ], axisLabel: { distance: 30, rotate: 'radial' }, progress: { show: true, roundCap: true } }] }; var chart = testHelper.create(echarts, 'main1', { title: [ 'Should not display a circle', 'Test case from #16640 (simplified)' ], option: option }); }); </script> <script> require(['echarts'], function (echarts) { var option = { series: [{ type: 'gauge', startAngle: 200, endAngle: -20, clockwise: false, data: [ { value: 0, name: 'SCORE' } ], progress: { show: true, roundCap: true } }] }; var chart = testHelper.create(echarts, 'main2', { title: [ 'Ticks should follow the axis (clockwise: false)' ], option: option }); }); </script> <script> require(['echarts'], function (echarts) { const option = { tooltip: { formatter: '{a} <br/>{b} : {c}%' }, series: [ { name: 'Pressure', type: 'gauge', clockwise: true, detail: { valueAnimation: true, formatter: '{value}' }, data: [ { value: 50, name: 'SCORE' } ], axisLine: { "roundCap": true, "lineStyle": { "width": 16, "color": [[0.3, "#C9781B"], [0.7, "#F163EA"], [1, "#6366F1"]] } } } ] }; testHelper.create(echarts, 'main3-1', { title: [ 'Case from #17633', 'Order of Axis lines should respect the clockwise option', 'clockwise: true' ], option }); testHelper.create(echarts, 'main3-2', { title: [ 'Case from #17633', 'Order of Axis lines should respect the clockwise option', 'clockwise: false' ], option: { ...option, series: [{ ...option.series[0], clockwise: false }] } }); }) </script> </body> </html>