[I] Pie chart setting moveOverlap, when all data is 0, the label undergoes a positional shift[Bug] [echarts]

2024-01-22 Thread via GitHub


Feather130 opened a new issue, #19533:
URL: https://github.com/apache/echarts/issues/19533

   ### Version
   
   5.4.3
   
   ### Link to Minimal Reproduction
   
   
https://echarts.apache.org/examples/zh/editor.html?code=PYBwLglsB2AEC8sDeAoWtJgDYFMBcya6GOAHmAQOQBKOAZjgE5OzB2wCGsA6jgEYBnCGByUANEXQCArnxHkqAMQ4BrHLAAiHMB3GTYuOhViUAxjmgjGlIgF8J6MMGBZIIAqmIZGEAOa-mKmEcAFsbdHsiXADoABMPfWAfC2NKADcmSFMOLD0vQ1SC8NhIqSYIHAECAG19Ty9YaA4Q_BMAQVNzAQFYRUZgMIcGsABPEFbKEAq8hsYOWIhpKpMAVgAGAFIZr1jtDhr9LyRYNJzpVrWxRuaJgGUcDkZTAAtYAFFoXwhoURKhhuQJzOFyuTRaVA0EGYpjAlD-h2Ix1OWHOBEu13BJjeIQ4EFy8IB6CRwLRoJuVAAqtAoHA2rEBHDbAiALr_YhYDh8HBYAAyHBGwGkxnqAJCwAyAHkMowOe4TAJnhAjABNYpeUoNDlcrAJQmwBXAADuBDAjHObK8IGAQkgMCC0CEsVEFuIdCSOLAVioSFMtm2DTdlluEAAXq0AIwANgRGq8oRAzw4QmWIoawRCt1GuF1ev1idiRoAQijGARw5cEV4FfMjRK6HQBDgwAANUmV4jVguGgDCLiSVEYvj4HAAFOjx1c1gA6FYASjVDSZAKXxBXzJQtgA3EA
   
   ### Steps to Reproduce
   
   ```javascript
   option = {
 title: {
   text: 'Referer of a Website',
   subtext: 'Fake Data',
   left: 'center'
 },
 tooltip: {
   trigger: 'item'
 },
 legend: {
   orient: 'vertical',
   left: 'left'
 },
 series: [
   {
 name: 'Access From',
 type: 'pie',
 radius: '50%',
 data: [
   { value: 0, name: 'Search Engine' },
   { value: 0, name: 'Direct' },
   { value: 0, name: 'Email' },
   { value: 0, name: 'Union Ads' }
 ],
 labelLayout: {
   moveOverlap: 'shiftY'
 },
 label: {
   show: true,
   position: 'inside',
   formatter: '{c}',
   fontSize: 16
 },
 emphasis: {
   itemStyle: {
 shadowBlur: 10,
 shadowOffsetX: 0,
 shadowColor: 'rgba(0, 0, 0, 0.5)'
   }
 }
   }
 ]
   };
   ```
   
   ### Current Behavior
   
   Label offset
   
   ### Expected Behavior
   
   Label alignment
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] Independent 'splitNumber' for Multiple Y-Axes in E-charts [echarts]

2024-01-22 Thread via GitHub


MatthiasMert commented on issue #19523:
URL: https://github.com/apache/echarts/issues/19523#issuecomment-1905435545

   > > As I commented on your other issue, you can make use of [min / 
max](https://echarts.apache.org/en/option.html#yAxis.min) and [minInterval / 
maxInterval](https://echarts.apache.org/en/option.html#yAxis.minInterval) to 
manually set the interval: 
[Example](https://echarts.apache.org/examples/en/editor.html?c=line-simple=PYBwLglsB2AEC8sDeAoWsAeBBDEDOAXMmurGAJ4gCmRA5AMYCGYVA5sAE7m0A0J6AE2aMiAbVoBZGL1i0AKgFcqM2gHUqAlXIAWClQDEOEFQGVmphdFoBdEgF8-6cjnxj-xUqQrU6AN0YANkq87ugAtowYRABMABzRjp6wYRDQAJLQLBz-AUQALADsiZ4RGBlZOfkF7g7uqElklDSyOcHFpKVEsQAMCaHJqeVU2YH53QCM7XYk1ol4wxBUhLCidf3ezbQBqcrtgsJi4wCs3Tyw0QDMp-fReWfR47Fn4xdHz4X3AGzdszXt9UkNnRttBdv1nLg8BkBFQorBJv0hGARCtLtdXp97o8zj1rp8LkVYEcPrACkdPr9PNN0LY7ABuIA)
   > 
   > Hello @MatthiasMert I have added max and min to every object present in y 
axis that I am plotting but I can still see the issue where the splitNumber 
that I have assigned gets overridden.
   
   The suggestion was to use minInterval and maxInterval in combination with 
min / max *instead* of splitNumber. Just look at the linked example.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] echarts-gl: error when displaying a simple surface [echarts]

2024-01-22 Thread via GitHub


Hirnochse closed issue #19527: [Bug] echarts-gl: error when displaying a simple 
surface
URL: https://github.com/apache/echarts/issues/19527


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] Y axis labels do not match with the y axis value [echarts]

2024-01-22 Thread via GitHub


amreekminocha commented on issue #19530:
URL: https://github.com/apache/echarts/issues/19530#issuecomment-1905367486

   Thanks for helping
   Didn't see stacked earlier


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Feature] 添加迷你图(小图)功能 [echarts]

2024-01-22 Thread via GitHub


helgasoft commented on issue #19531:
URL: https://github.com/apache/echarts/issues/19531#issuecomment-1905367703

   duplicate of #17693


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



(echarts) branch release updated (18b361adf -> f996884b0)

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch release
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 18b361adf Merge pull request #18886 from jiawulin001/release-dev
 add c1a157ee9 WIP(ssr): add meta-data and test case #18334
 add ed1c176d5 WIP
 add 8fb7ed09f Merge branch 'master' into ssr
 add f8b25f52b style(ssr): remove console.log
 add 27cc76986 test(ssr): add test cases
 add 0e7eac717 feat(ssr): improve code
 add b2ff198ac feat(ssr): call registerSSRDataGetter instead of metaData
 add a63297085 chore(ssr): update building ssr client
 add 6bca1329b chore(ssr): update building of ssr client
 add c8ba77cc2 chore: merge
 add 01df82a9e fix(ssr): remove unnecessary code
 add 687670741 feat(pie): add angleRange for control pie range
 add dda497065 Merge branch 'master' of https://github.com/apache/echarts 
into feat/pie-angleRange
 add 11e43864f Merge branch 'master' of https://github.com/apache/echarts 
into feat/pie-angleRange
 add 56138eea8 feat(pie): add endAngle insteadof angleRange
 add 65d744213 fix(pie): fix endAngle logical more compact
 add b79777e9e Merge pull request #18820 from linghaoSu/feat/pie-angleRange
 add 9f9e2d3ce fix(endLabel): endLabel fail with null data #18839
 add 91d1e0393 test(endLabel): add test case
 add 1d10ba89e fix(endLabel): remove check of inner
 add a92b0df97 Merge pull request #18841 from apache/fix-endLabel
 add fd58e523e Update echarts.ts
 add 173fac602 Merge pull request #18862 from captainhaddock18/master
 add 429123dc1 fix(scatter): fix edge scatter may be clipped unexpectedly 
due to tiny offset.
 add c525cbb06 test: add two new test cases for scatter clip on Cartesian 
2D coordinate system.
 add d674ebbee test: fix actions of the `clip.html` test case can't work as 
expected
 add 65717dbf9 fix(scatter): change the default tolerance to `0.1` to cover 
more scenarios
 add 111de669e Merge pull request #18867 from apache/fix/scatter-clip
 add 42cb0cca7 Merge pull request #18904 from apache/release
 add 989c0b884 remove duplicate extends at GraphNodeItemOption
 add ab14d4680 Merge pull request #18901 from 
nenoNaninu/rm_duplicate_extends
 add 76e5d4ad5 chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.4
 add 3f9c0b9ee Merge pull request #18908 from 
apache/dependabot/npm_and_yarn/word-wrap-1.2.4
 add 3bcb9017a Fix return type of graphic.clipRectByRect.
 add 586ca04b5 Merge pull request #18950 from benlongo/patch-1
 add db2036530 fix(source): fix multi typed array detect error
 add bb1e18cc3 Merge pull request #19035 from linghaoSu/fix/typed-array-list
 add 8734ed145 fix(sunburst): fix align error caused by float precision
 add 5b448f6de Merge pull request #18962 from 
linghaoSu/fix/sunburst-label-align
 add 428e2ad11 feat(tooltip): add `appendTo` option to allow customizing 
tooltip container (#18436)
 add a06dd62e0 fix(visualMap): fix continuous visualMap mouseover event not 
register except first countinous visualMap (#19097)
 add de074fb71 feat(type): export `EChartsInitOpts` and more types for 
`echarts/core` (#19103)
 add fbee94d5d fix(i18n): enhance default language fallback (#19107)
 add 4ce776ccf feat(pie): add padAngle for pie
 add b37d67cbd Merge pull request #19076 from linghaoSu/feat/pie_pad-angle
 add a57202d8e fix(clip): add extra clip to prevent unexpected clip on 
certain scenario. close #19051
 add fa231d37f Merge pull request #19056 from RexSkz/fix-19051
 add 5d1aacdd0 fix(tooltip): fix opacity not work in tooltip marker
 add 93d542cb4 Merge pull request #18921 from linghaoSu/fix/tooltip-color
 add 33b437d7b Add nullables to OptionDataValue
 add a51f449fd Merge pull request #19111 from avin-kavish/patch-1
 add 06b1d3cf7 feat(tooltip): add dataIndex to valueFormatter callback. 
close #18997
 add ba441561c Merge branch 'apache:master' into fix-18997
 add 80b251f8d Merge pull request #19123 from ChepteaCatalin/fix-18997
 add 0885981a0 feat: add endAngle option
 add 3a47529e2 feat: add endAngle option
 add fbc8d79da chore: remove dist changes
 add 0862d1cc6 test: add visual test
 add 8a2f21659 use zrUtil and fix radiusAxisView
 add 589f66d0d cleanup
 add 691d9ee94 fix: visual regression with circle
 add d08664fff Merge pull request #19099 from yassilah/feat-polar-endAngle
 add 050835320 fix(toolbox): fix toolbox text can't apply the specified or 
inherited font style
 add 4a3d09072 Merge pull request #19170 from apache/fix/toolbox/font
 add 38ec1b589 fix #19050
 add ea28e4433 Merge pull request #19174 from shiersansi/fix-#19050
 add 8eb29bd6f chore(deps-dev): bump @babel/traverse from 7.11.5 to 7.23.2
 add 522c75d0e Merge pull request #19213 from 
apache/dependabot/npm_and_yarn/babel/traverse-7.23.2
 add 

(echarts) 01/01: Merge pull request #19532 from apache/master

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch release
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit f996884b0b8a371da677e7bbeb30b977eba2d35a
Merge: 18b361adf 6b8fae82e
Author: Wenli Zhang 
AuthorDate: Tue Jan 23 14:00:40 2024 +0800

Merge pull request #19532 from apache/master

Merge master to release for v5.5.0

 .eslintrc-common.yaml  |2 +-
 .github/workflows/.scripts/update-notice-year.js   |   93 ++
 .github/workflows/ci.yml   |8 +-
 .github/workflows/nightly-next.yml |4 +-
 .github/workflows/nightly.yml  |4 +-
 .github/workflows/source-release.yml   |   11 +-
 .github/workflows/update-notice-year.yml   |   24 +
 .gitignore |4 +
 .npmignore |1 +
 NOTICE |4 +-
 build/build.js |6 +
 build/config.js|   18 +-
 build/package.json |3 +
 build/pre-publish.js   |   51 +-
 build/template/ssr/client/index.d.ts   |   20 +
 build/template/ssr/client/index.js |   20 +
 dist/package.json  |3 +
 i18n/package.json  |3 +
 package-lock.json  |  807 +++--
 package.json   |   53 +-
 src/animation/universalTransition.ts   |  174 ++-
 src/chart/bar/BaseBarSeries.ts |7 +-
 src/chart/bar/PictorialBarSeries.ts|6 +
 src/chart/bar/PictorialBarView.ts  |   13 +
 src/chart/graph/GraphSeries.ts |2 +-
 src/chart/graph/GraphView.ts   |8 +-
 src/chart/helper/createClipPathFromCoordSys.ts |   10 +-
 src/chart/line/LineView.ts |2 +-
 src/chart/pie/PieSeries.ts |5 +
 src/chart/pie/pieLayout.ts |   92 +-
 src/chart/scatter/ScatterView.ts   |9 +-
 src/chart/sunburst/SunburstPiece.ts|   46 +-
 src/component/axis/AngleAxisView.ts|   13 +-
 src/component/axis/AxisBuilder.ts  |   40 +-
 src/component/axis/RadiusAxisView.ts   |   12 +-
 src/component/legend/LegendView.ts |   20 +-
 src/component/toolbox/ToolboxView.ts   |   10 +-
 src/component/toolbox/featureManager.ts|4 +
 src/component/tooltip/TooltipHTMLContent.ts|   67 +-
 src/component/tooltip/TooltipModel.ts  |   12 +-
 src/component/tooltip/TooltipView.ts   |6 +-
 src/component/tooltip/seriesFormatTooltip.ts   |8 +-
 src/component/tooltip/tooltipMarkup.ts |   25 +-
 src/component/visualMap/ContinuousView.ts  |   23 +-
 src/coord/CoordinateSystem.ts  |2 +-
 src/coord/axisCommonTypes.ts   |   11 +-
 src/coord/cartesian/Cartesian2D.ts |   12 +-
 src/coord/polar/AxisModel.ts   |1 +
 src/coord/polar/polarCreator.ts|3 +-
 src/core/echarts.ts|   34 +-
 src/core/locale.ts |2 +-
 src/data/Source.ts |2 +-
 src/data/helper/sourceHelper.ts|2 +-
 src/export/core.ts |   43 +-
 src/i18n/langAR.ts |  147 +++
 src/i18n/langCS.ts |4 +-
 src/i18n/langDE.ts |4 +-
 src/i18n/langEN.ts |4 +-
 src/i18n/langES.ts |   60 +
 src/i18n/langFI.ts |   60 +
 src/i18n/langFR.ts |4 +-
 src/i18n/langHU.ts |4 +-
 src/i18n/langIT.ts |4 +-
 src/i18n/langJA.ts |4 +-
 src/i18n/langKO.ts |4 +-
 src/i18n/langNL.ts |  144 +++
 src/i18n/langPL.ts |4 +-
 src/i18n/langPT-br.ts  |4 +-
 src/i18n/langRO.ts |4 +-
 src/i18n/langRU.ts |4 +-
 src/i18n/langSI.ts |4 +-
 src/i18n/langTH.ts |   60 +
 src/i18n/langTR.ts |4 +-
 src/i18n/langUK.ts |4 +-
 

Re: [PR] Merge master to release for v5.5.0 [echarts]

2024-01-22 Thread via GitHub


echarts-bot[bot] commented on PR #19532:
URL: https://github.com/apache/echarts/pull/19532#issuecomment-1905344425

   Congratulations! Your PR has been merged. Thanks for your contribution! 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Merge master to release for v5.5.0 [echarts]

2024-01-22 Thread via GitHub


Ovilia merged PR #19532:
URL: https://github.com/apache/echarts/pull/19532


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] echarts.format.truncateText [echarts]

2024-01-22 Thread via GitHub


LukerSpringtree commented on issue #7479:
URL: https://github.com/apache/echarts/issues/7479#issuecomment-1905335650

   2024了, 怎么在文档上搜索这个内容
   echarts.format.truncateText


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] Y axis labels do not match with the y axis value [echarts]

2024-01-22 Thread via GitHub


Ovilia closed issue #19530: [Bug] Y axis labels do not match with the y axis 
value
URL: https://github.com/apache/echarts/issues/19530


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Feature] 添加迷你图(小图)功能 [echarts]

2024-01-22 Thread via GitHub


Ovilia commented on issue #19531:
URL: https://github.com/apache/echarts/issues/19531#issuecomment-1905236008

   用多系列,把坐标轴之类的隐藏了,是不是可以满足需求?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Merge master to release for v5.5.0 [echarts]

2024-01-22 Thread via GitHub


github-actions[bot] commented on PR #19532:
URL: https://github.com/apache/echarts/pull/19532#issuecomment-1905234071

   
   The changes brought by this PR can be previewed at: 
https://echarts.apache.org/examples/editor?version=PR-19532@6b8fae8
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[PR] Merge master to release for v5.5.0 [echarts]

2024-01-22 Thread via GitHub


Ovilia opened a new pull request, #19532:
URL: https://github.com/apache/echarts/pull/19532

   
   
   ## Brief Information
   
   This pull request is in the type of:
   
   - [ ] bug fixing
   - [ ] new feature
   - [x] others
   
   
   
   ### What does this PR do?
   
   
   
   
   
   ### Fixed issues
   
   
   
   
   ## Details
   
   ### Before: What was the problem?
   
   
   
   
   
   
   
   ### After: How does it behave after the fixing?
   
   
   
   
   
   
   
   ## Document Info
   
   One of the following should be checked.
   
   - [ ] This PR doesn't relate to document changes
   - [ ] The document should be updated later
   - [ ] The document changes have been made in apache/echarts-doc#xxx
   
   
   
   ## Misc
   
   ### ZRender Changes
   
   - [ ] This PR depends on ZRender changes (ecomfe/zrender#xxx).
   
   ### Related test cases or examples to use the new APIs
   
   N.A.
   
   
   
   ## Others
   
   ### Merging options
   
   - [ ] Please squash the commits into a single one when merging.
   
   ### Other information
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] Merge master to release for v5.5.0 [echarts]

2024-01-22 Thread via GitHub


echarts-bot[bot] commented on PR #19532:
URL: https://github.com/apache/echarts/pull/19532#issuecomment-1905228028

   Thanks for your contribution!
   The community will review it ASAP. In the meanwhile, please checkout [the 
coding standard](https://echarts.apache.org/en/coding-standard.html) and Wiki 
about [How to make a pull 
request](https://github.com/apache/echarts/wiki/How-to-make-a-pull-request).
   
   The pull request is marked to be `PR: author is committer` because you are a 
committer of this project.
   
   ⚠️ MISSING DOCUMENT INFO: Please make sure one of the document options are 
checked in this PR's description. Search "Document Info" in the description of 
this PR. This should be done either by the author or the reviewers of the PR.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug]echarts line symbol.pin render like symbol.circle [echarts]

2024-01-22 Thread via GitHub


github-actions[bot] commented on issue #16408:
URL: https://github.com/apache/echarts/issues/16408#issuecomment-1904813961

   This issue has been automatically marked as stale because it did not have 
recent activity. It will be closed in 7 days if no further activity occurs. If 
you wish not to mark it as stale, please leave a comment in this issue.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] echarts waterfall error 瀑布图示例错误 [echarts]

2024-01-22 Thread via GitHub


helgasoft commented on issue #5308:
URL: https://github.com/apache/echarts/issues/5308#issuecomment-1904533722

   working in v.5.4.3 - [Demo 
Code](https://echarts.apache.org/examples/en/editor.html?code=CYQwLiC8AEDaC0AmADMgNPAjCjnVsUQA41MBWdTAZjNIHYTiA2XTATgyqcwxSoF0A3AChgAZwCuAWxixkQ6JJnIRoCADopIAA4AKAG7RIAPmgBvRdOgBqGPsHRx09doliAFrqUBKBwF9vYWEAe20wAEtggDsjc2FoaAiwABsAUwAuOISEsFSADzBMgHIAdXBUgCcAMxBk5OgAYXcQCrAi-Og_NA68gEE88LFMizAAT20M6CKAY3KAc2CK0aK0aBABsQAZEAAjVOT0sw9ggHd0muSxVL9O7oTR_sHh246rivDUobgOhLMf7KiICkkyKAAVkiBpql3MFksBKit_jlxiCdi1EdlsmIINMANbFAAqwQgyQxmOg4VyUgAymM0sMkdkdot4RUGrDFsUwBUQFExNoWqkom07uSEtMORUuTy-QKKkK2oyuozUlJtM0xE8smKKVTaaN6dqddBmRVWezkpyptzefzBcKycaJZapdaZXb5Q7GQk_ErRZi1CBMk4pP6sTjcbSebk5qNirVSf9lZi_mLAcDioHHdkxhNimiKtmEtjIfipkSSUXFBGo_M41ME1XA8HwCBVoyIXsDkbycczokKhJUmHMdpgpqItFiuE-eF4e0xcnyZTVfrDRZnVbDCZzPKwBIKjF9Op9LUh8ZkNAAPxTfSRNJtaDFRa8uapIp-Jc-jr8YR-QRAA).
   
   
![image](https://github.com/apache/echarts/assets/13038071/8e7f3b95-f39a-4ae1-9ad0-8600b5ee6aff)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] Waterfall chart cannot process negative value as expected [echarts]

2024-01-22 Thread via GitHub


helgasoft commented on issue #11885:
URL: https://github.com/apache/echarts/issues/11885#issuecomment-1904532892

   waterfall stacked bars are working in v.5.4.3 - [Demo 
Code](https://echarts.apache.org/examples/en/editor.html?code=CYQwLiC8AEDaC0AmADMgNPAjCjnVsUQA41MBWdTAZjNIHYTiA2XTATgyqcwxSoF0A3AChgAZwCuAWxixkQ6JJnIRoCADopIAA4AKAG7RIAPmgBvRdOgBqGPsHRx09doliAFrqUBKBwF9vYWEAe20wAEtggDsjc2FoaAiwABsAUwAuOISEsFSADzBMgHIAdXBUgCcAMxBk5OgAYXcQCrAi-Og_NA68gEE88LFMizAAT20M6CKAY3KAc2CK0aK0aBABsQAZEAAjVOT0sw9ggHd0muSxVL9O7oTR_sHh246rivDUobgOhLMf7KiICkkyKAAVkiBpql3MFksBKit_jlxiCdi1EdlsmIINMANbFAAqwQgyQxmOg4VyUgAymM0sMkdkdot4RUGrDFsUwBUQFExNoWqkom07uSEtMORUuTy-QKKkK2oyuozUlJtM0xE8smKKVTaaN6dqddBmRVWezkpyptzefzBcKycaJZapdaZXb5Q7GQk_ErRZi1CBMk4pP6sTjcbSebk5qNirVSf9lZi_mLAcDioHHdkxhNimiKtmEtjIfipkSSUXFBGo_M41ME1XA8HwCBVoyIXsDkbycczokKhJUmHMdpgpqItFiuE-eF4e0xcnyZTVfrDRZnVbDCZzPKwBIKjF9Op9LUh8ZkNAAPxTfSRNJtaDFRa8uapIp-Jc-jr8YR-QRAA).
   
   
![image](https://github.com/apache/echarts/assets/13038071/8e7f3b95-f39a-4ae1-9ad0-8600b5ee6aff)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] Why doesn't eCharts fill the available space? [echarts]

2024-01-22 Thread via GitHub


Bilge commented on issue #13395:
URL: https://github.com/apache/echarts/issues/13395#issuecomment-1904093642

   > After 4 hours of search, just found the solutions. You have to change the 
settings (top, bottom, left, right) for the "grid" component to change the 
padding/spacing - see https://echarts.apache.org/en/option.html#grid
   
   ☝ Stop pinging me.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] Why doesn't eCharts fill the available space? [echarts]

2024-01-22 Thread via GitHub


laurmurclar commented on issue #13395:
URL: https://github.com/apache/echarts/issues/13395#issuecomment-1904072750

   Tthe `containLabel: true` option mostly solves the problem but you can see 
that the y-axis label gets cut off here:
   ![CleanShot 2024-01-22 at 13 58 
57](https://github.com/apache/echarts/assets/9434500/bfe9180a-0400-439a-8104-24ca2378dd44)
   
   https://codepen.io/laurmurclar/pen/JjzJqJy
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] Why doesn't eCharts fill the available space? [echarts]

2024-01-22 Thread via GitHub


laurmurclar commented on issue #13395:
URL: https://github.com/apache/echarts/issues/13395#issuecomment-1904059986

   This is still an issue as far as I can see @Bilge - there doesn't seem to be 
a particularly nice way to do this. For example, if you have a simple line 
graph with labelled axis (x,y), setting the grid positions to 0 will mean the 
axis labels are cut off.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Feature] 是否能支持y轴配置0刻度对齐 [echarts]

2024-01-22 Thread via GitHub


liboliang01 commented on issue #18541:
URL: https://github.com/apache/echarts/issues/18541#issuecomment-1904051646

   +1


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Feature] Change theme / dark mode dynamically. [echarts]

2024-01-22 Thread via GitHub


juancarlosgzs commented on issue #18198:
URL: https://github.com/apache/echarts/issues/18198#issuecomment-1904044553

   A preconfigured dark theme that goes in when a .dark class applies should be 
enough I think. Some progress would be appreciated


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Feature] 添加迷你图(小图)功能 [echarts]

2024-01-22 Thread via GitHub


echarts-bot[bot] commented on issue #19531:
URL: https://github.com/apache/echarts/issues/19531#issuecomment-1904028302

   @freedomdebug It seems you are not using English, I've helped translate the 
content automatically. To make your issue understood by more people and get 
helped, we'd like to suggest using English next time. 珞
   TRANSLATED
   
   **TITLE**
   
   [Feature] Add mini-picture (small picture) function
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[I] [Feature] 添加迷你图(小图)功能 [echarts]

2024-01-22 Thread via GitHub


freedomdebug opened a new issue, #19531:
URL: https://github.com/apache/echarts/issues/19531

   ### What problem does this feature solve?
   
   迷你图,小图在众多图表中是常见的,
   如下:
   highcharts:https://www.hcharts.cn/demo/highcharts/sparkline
   Ant Design Charts:https://v0-charts.ant.design/demos/tiny
   antv:https://antv-g2plot-v1.gitee.io/zh/examples/sparkline/multiple
   
![image](https://github.com/apache/echarts/assets/7620476/f21a2a29-803a-436f-942b-533999def7df)
   
   
   
   ### What does the proposed API look like?
   
   可参考antv
   https://antv-g2plot-v1.gitee.io/zh/examples/sparkline/multiple/API


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] feat: change to default ESM package. For developer testing and node usage in the module customization scenario. [echarts]

2024-01-22 Thread via GitHub


David-Tsui commented on PR #19513:
URL: https://github.com/apache/echarts/pull/19513#issuecomment-1903965936

   Love!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] package.json is missing a package "type": "module" description [echarts]

2024-01-22 Thread via GitHub


100pah closed issue #16709: [Bug] package.json is missing a package "type": 
"module" description
URL: https://github.com/apache/echarts/issues/16709


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] package.json is missing a package "type": "module" description [echarts]

2024-01-22 Thread via GitHub


100pah commented on issue #16709:
URL: https://github.com/apache/echarts/issues/16709#issuecomment-1903923909

   Fixed by #19513


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] Support dual packaging [echarts]

2024-01-22 Thread via GitHub


100pah closed issue #17189: [Bug] Support dual packaging
URL: https://github.com/apache/echarts/issues/17189


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] Support dual packaging [echarts]

2024-01-22 Thread via GitHub


100pah commented on issue #17189:
URL: https://github.com/apache/echarts/issues/17189#issuecomment-1903920938

   Closed by #19513


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] feat: change to default ESM package. For developer testing and node usage in customization module scenario. [echarts]

2024-01-22 Thread via GitHub


echarts-bot[bot] commented on PR #19513:
URL: https://github.com/apache/echarts/pull/19513#issuecomment-1903914385

   Congratulations! Your PR has been merged. Thanks for your contribution! 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [PR] feat: change to default ESM package. For developer testing and node usage in customization module scenario. [echarts]

2024-01-22 Thread via GitHub


Ovilia merged PR #19513:
URL: https://github.com/apache/echarts/pull/19513


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



(echarts) branch module_default_esm deleted (was 80172d698)

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch module_default_esm
in repository https://gitbox.apache.org/repos/asf/echarts.git


 was 80172d698 Merge branch 'master' into module_default_esm

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.


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



(echarts) 01/01: Merge pull request #19513 from apache/module_default_esm

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 6b8fae82eb5fbd1042b6262dd6b5d39d9adbf373
Merge: 9c3fc0e14 80172d698
Author: Wenli Zhang 
AuthorDate: Mon Jan 22 20:35:00 2024 +0800

Merge pull request #19513 from apache/module_default_esm

feat: change to default ESM package. For developer testing and node usage 
in customization module scenario.

 .eslintrc-common.yaml|  2 +-
 .gitignore   |  3 ++
 build/package.json   |  3 ++
 build/pre-publish.js | 21 ++
 build/template/ssr/client/index.d.ts | 20 +
 build/template/ssr/client/index.js   | 20 +
 dist/package.json|  3 ++
 i18n/package.json|  3 ++
 package.json | 48 +-
 ssr/client/dist/index.js | 73 
 ssr/client/dist/index.js.map |  2 +-
 ssr/client/dist/package.json |  3 ++
 ssr/client/src/.eslintrc.yaml| 48 ++
 ssr/client/src/index.ts  | 80 ++--
 test/package.json|  3 ++
 test/ssr.html| 33 +++
 theme/package.json   |  3 ++
 tsconfig.json|  1 +
 18 files changed, 273 insertions(+), 96 deletions(-)


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



(echarts) branch master updated (9c3fc0e14 -> 6b8fae82e)

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 9c3fc0e14 Merge pull request #19526 from 
apache/import-liftColor-from-zrender
 add 23545a6b6 feat: change to default ESM package. For developer testing 
and node usage in customization module scenario.
 add abe29f0e7 [fix] tweak ssr ts type, impl, exports and eslint
 add 80172d698 Merge branch 'master' into module_default_esm
 new 6b8fae82e Merge pull request #19513 from apache/module_default_esm

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.


Summary of changes:
 .eslintrc-common.yaml  |  2 +-
 .gitignore |  3 +
 build/package.json |  3 +
 build/pre-publish.js   | 21 +++---
 .../template/ssr/client/index.d.ts |  2 +-
 .../template/ssr/client/index.js   |  2 +-
 dist/package.json  |  3 +
 i18n/package.json  |  3 +
 package.json   | 48 -
 ssr/client/dist/index.js   | 73 ++--
 ssr/client/dist/index.js.map   |  2 +-
 ssr/client/dist/package.json   |  3 +
 {src => ssr/client/src}/.eslintrc.yaml |  2 +-
 ssr/client/src/index.ts| 80 ++
 test/package.json  |  3 +
 test/ssr.html  | 33 -
 theme/package.json |  3 +
 tsconfig.json  |  1 +
 18 files changed, 188 insertions(+), 99 deletions(-)
 create mode 100644 build/package.json
 copy test/ut/core/setup.ts => build/template/ssr/client/index.d.ts (96%)
 copy src/global.d.ts => build/template/ssr/client/index.js (96%)
 create mode 100644 dist/package.json
 create mode 100644 i18n/package.json
 create mode 100644 ssr/client/dist/package.json
 copy {src => ssr/client/src}/.eslintrc.yaml (97%)
 create mode 100644 test/package.json
 create mode 100644 theme/package.json


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



Re: [PR] refactor(util): import `liftColor` function from zrender [echarts]

2024-01-22 Thread via GitHub


echarts-bot[bot] commented on PR #19526:
URL: https://github.com/apache/echarts/pull/19526#issuecomment-1903912769

   Congratulations! Your PR has been merged. Thanks for your contribution! 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



(echarts) 01/01: Merge pull request #19526 from apache/import-liftColor-from-zrender

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git

commit 9c3fc0e148edc9dbea429ac44364af68353d23f9
Merge: 243856242 a2efa5744
Author: Wenli Zhang 
AuthorDate: Mon Jan 22 20:33:59 2024 +0800

Merge pull request #19526 from apache/import-liftColor-from-zrender

refactor(util): import `liftColor` function from zrender

 src/util/states.ts | 32 ++--
 1 file changed, 2 insertions(+), 30 deletions(-)


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



Re: [PR] refactor(util): import `liftColor` function from zrender [echarts]

2024-01-22 Thread via GitHub


Ovilia merged PR #19526:
URL: https://github.com/apache/echarts/pull/19526


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



(echarts) branch import-liftColor-from-zrender deleted (was a2efa5744)

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch import-liftColor-from-zrender
in repository https://gitbox.apache.org/repos/asf/echarts.git


 was a2efa5744 refactor(util): import `liftColor` function from zrender 
(ecomfe/zrender#999)

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.


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



(echarts) branch master updated (243856242 -> 9c3fc0e14)

2024-01-22 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


from 243856242 feat(animation): support multi-level drill-down for 
universal transition #17611
 add a2efa5744 refactor(util): import `liftColor` function from zrender 
(ecomfe/zrender#999)
 new 9c3fc0e14 Merge pull request #19526 from 
apache/import-liftColor-from-zrender

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.


Summary of changes:
 src/util/states.ts | 32 ++--
 1 file changed, 2 insertions(+), 30 deletions(-)


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



(echarts) branch module_default_esm updated (abe29f0e7 -> 80172d698)

2024-01-22 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

sushuang pushed a change to branch module_default_esm
in repository https://gitbox.apache.org/repos/asf/echarts.git


from abe29f0e7 [fix] tweak ssr ts type, impl, exports and eslint
 add 64fdec6b0 chore: ignore ssr src when release npm
 add 94dd855f8 Merge pull request #19512 from apache/feat/ssr-build
 add 690ebe6ee fix(graph): fix force layout iteration timer doesn't stop 
after disposing the chart
 add 6cae00c7b Merge pull request #19514 from apache/fix/graph-dispose
 add 3a056bde1 fix(markArea): fix markArea position when axis is with 
alignWithLabel
 add 53bb9ff2f Merge pull request #19516 from apache/fix/mark-area
 add 243856242 feat(animation): support multi-level drill-down for 
universal transition #17611
 add 80172d698 Merge branch 'master' into module_default_esm

No new revisions were added by this update.

Summary of changes:
 .npmignore|   1 +
 src/animation/universalTransition.ts  | 174 +---
 src/chart/bar/BaseBarSeries.ts|   3 +-
 src/chart/graph/GraphView.ts  |   8 +-
 src/util/types.ts |   5 +-
 test/graph-case.html  |  57 ++-
 test/markArea.html| 308 +-
 test/runTest/actions/__meta__.json|   2 +-
 test/runTest/actions/graph-case.json  |   2 +-
 test/universalTransition-multiLevelDrillDown.html | 476 ++
 10 files changed, 981 insertions(+), 55 deletions(-)
 create mode 100644 test/universalTransition-multiLevelDrillDown.html


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



Re: [I] Donut chart with centered dynamic text [echarts]

2024-01-22 Thread via GitHub


ubay1 commented on issue #12080:
URL: https://github.com/apache/echarts/issues/12080#issuecomment-1903785458

   ```javascript
   option = {
 // tooltip: {
 //   trigger: 'item'
 // },
 legend: {
   top: '5%',
   left: 'center'
 },
 series: [
   {
 name: 'Access From',
 type: 'pie',
 radius: ['40%', '70%'],
 avoidLabelOverlap: false,
 label: {
   show: false,
   position: 'center',
   formatter: [
   '{a|Total bayi}',
   '{b|{c}}'
   ].join('\n'),
   rich: {
 a: { fontSize: 14, height: 30 },
 b: { fontWeight: 'bold', fontSize: 24 },
   },
 },
 emphasis: {
   label: {
 show: true,
 fontSize: 40,
 fontWeight: 'bold'
   }
 },
 labelLine: {
   show: false
 },
 data: [
   { value: 1048, name: 'Search Engine' },
   { value: 735, name: 'Direct' },
 ]
   }
 ]
   };
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] Y axis labels do not match with the y axis value [echarts]

2024-01-22 Thread via GitHub


MatthiasMert commented on issue #19530:
URL: https://github.com/apache/echarts/issues/19530#issuecomment-1903561205

   Did you realize that the example is using stacked lines? 
[Here](https://echarts.apache.org/examples/en/editor.html?c=line-stack=PYBwLglsB2AEC8sDeAoWtJgDYFMBcya6GOAHmAQOQDKYAhgMYDWOAJrADITQ6VEC-AGiJhgwLJBAFUxDACcIAc0U45VOqQgBnPuiFFcK6K2lF0rOvQIBtSgFEAtnQhZKg2JQCq0KHACCrDrulABqEKw4wLABQR4AIhByOAxgbh7UOHRyDAAWsHbQity8ALoCwuiKCiaEsrgAZhQeAMwApG5msAqKOU2UACztFcQARsBgog5UbR2yDDD03Bx0IzhYBGByAK445SJiWGOkprL1mWBbSSeysFp0AG44floAkk4q0vydX3rDpH6aLTXdBgACeIHwHgYlhwimAclBs1GwC2xiyoIA4nQpLB6nQsFocMNzJY6DZKABZGBpSgAFR2NIA6mwabSclsaQAxBQ06iWXmoyhlX5EUEA7TAjDgyGUe74hl7dCEhQ4IGwaydGQ3aB0BwyxzOVzE4hgiFULDFJGyCxWdUARgATAAGdx25oO11Ou2u5r9dwAThdsAdzSDDrtTuFxH0si1sh1eqo3l80UCVpN0vNluNJNt1gdztdAA4PbA7f7vcHfe4HYH3M1Q_WI1GRbHOugEzKwhEojF0yDMx4LTx-7AbWT7QBWMPumte12Tv1luuwBtB_rN77GuPETtUBJJFKj00y4e8HNj0k2d1Bhul0OVhtL5ortf150t2Ax4g7ju6mUZFkuT5IU2btlKZpDmBNyXnmJZBv6s6wIGlaIUujorm6jZljen4_LAZT8AA3EAA)
 is it without.
   
   If this is not the issue, pls specify more in detail what you are expecting 
to be shown on the yAxis. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



[I] Y axis labels do not match with the y axis value [Bug] [echarts]

2024-01-22 Thread via GitHub


amreekminocha opened a new issue, #19530:
URL: https://github.com/apache/echarts/issues/19530

   ### Version
   
   5.3.2
   
   ### Link to Minimal Reproduction
   
   https://echarts.apache.org/examples/en/editor.html?c=line-stack
   
   ### Steps to Reproduce
   
   This is an example in apache echarts
   Will be easily visible in the example link shared
   
   ### Current Behavior
   
   Y axis Label values are not at all matching with the actual value
   Tooltip matches tho
   
   ### Expected Behavior
   
   Y axis Label values should match with the actual y value
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] [Bug] Overflow truncate breaks axis label click target position [echarts]

2024-01-22 Thread via GitHub


amit-unravel commented on issue #18306:
URL: https://github.com/apache/echarts/issues/18306#issuecomment-1903515295

   > I added an empty rich: {} to the axisLabel and everything worked as 
expected
   
   This hack worked for me.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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



Re: [I] pictorialBar label no refresh [echarts]

2024-01-22 Thread via GitHub


helgasoft commented on issue #11584:
URL: https://github.com/apache/echarts/issues/11584#issuecomment-1903466528

   original issue reported by @cn-xufei  has been fixed in v.5.4.3 - [Demo 
Code](https://echarts.apache.org/examples/en/editor.html?version=5.4.3=CYQwLiC8AEDaCMAWADAGmgJgMxsxxAugFAD2ADmAJYkB20MA3kdNFWADYCmAXA2JwA8w3AOQBjdpTEBrEQF9UzaAICCAygGdu0BtFARusEQFlaI9CIAqAV07noIgOqdgIggqUBPNZu27oHiwanABOlJxacEosTCxxeuAg2vogivEsYJ5kPA5kUmAkYSDsAEIgIebRcRqeALYARiTsopS1IADmPAD0XQAWYGBkWj2cYr3lYBoAdCBkIGOcU4XtXZw0Xa0dEV3sJO0kU2Q07ZXp0DUNTQBKnNng2mAhtmnpF43sAMqUAF45sACs_3QGAwBBe8XYIHqnGaDA0vRIAHduI9ntAyCQNJQqLRRAUyPYAGa0MBfX7cEFyKpUljEOQAbiIYHa7Ho0EJxWCjNqngAwuMQmAljQABTiSQyInWGhiHGiuYhEC1DQASh0ShSsGQBBgzNZAH5oEhkNBtPAcIyWDz-RMpsEwAB5CjUUVw0LhLSwBgpbgpOTuFVKPVsgCEesZchV9KAA)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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