[GitHub] [echarts] BangKk closed issue #18401: [Bug] xAxis rich label render problem

2023-03-21 Thread via GitHub


BangKk closed issue #18401: [Bug] xAxis rich label render problem
URL: https://github.com/apache/echarts/issues/18401


-- 
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



[GitHub] [echarts] BangKk commented on issue #18401: [Bug] xAxis rich label render problem

2023-03-21 Thread via GitHub


BangKk commented on issue #18401:
URL: https://github.com/apache/echarts/issues/18401#issuecomment-1479001885

   yeah, it works. Thank you!


-- 
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



[GitHub] [echarts] Gumichocopengin8 opened a new issue, #18406: [Feature] Flex wrap for

2023-03-21 Thread via GitHub


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

   ### What problem does this feature solve?
   
   Charts can be wrapped like [flex 
wrap](https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap) when window 
width is narrow
   
   https://user-images.githubusercontent.com/34010665/226800025-010dcf2f-2de9-4d34-8ebe-952f9426ff71.png";>
   
   
   or do we have one already?
   
   ### What does the proposed API look like?
   
   should be like `flex: true`


-- 
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



[GitHub] [echarts] u-zhaoweijun commented on issue #18404: [Bug] series.encode no longer working for gauge after version 5.2 or later

2023-03-21 Thread via GitHub


u-zhaoweijun commented on issue #18404:
URL: https://github.com/apache/echarts/issues/18404#issuecomment-1478881044

   I just wanted to use dataset uniformly to organize data, so I imitated other 
chart's interface implementations. And it works correctly in versions 5.1 and 
earlier. 
   
   > Weird, this feature is not mentioned in the documentation.
   
   


-- 
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



[GitHub] [echarts] susiwen8 commented on issue #18404: [Bug] series.encode no longer working for gauge after version 5.2 or later

2023-03-21 Thread via GitHub


susiwen8 commented on issue #18404:
URL: https://github.com/apache/echarts/issues/18404#issuecomment-1478841260

   Weird, this feature is not mentioned in the documentation.


-- 
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



[GitHub] [echarts] taurz commented on issue #18401: [Bug] xAxis rich label render problem

2023-03-21 Thread via GitHub


taurz commented on issue #18401:
URL: https://github.com/apache/echarts/issues/18401#issuecomment-1478805594

   rich label needs an explict width because there's no text defined in 
`${value}{eventTag|}`,your example would work as below
   `rich: {
   eventTag: {
 width: 12,
 backgroundColor: { image: eventImage, width: 12, height: 12 }
   }
 }`


-- 
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



[GitHub] [echarts] lucky-bruce commented on issue #18405: [Feature] highlight related edges when hover over an edge

2023-03-21 Thread via GitHub


lucky-bruce commented on issue #18405:
URL: https://github.com/apache/echarts/issues/18405#issuecomment-1478794506

   Which example should I refer for this @Ovilia?


-- 
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



[GitHub] [echarts] lucky-bruce opened a new issue, #18405: [Feature] highlight related edges when hover over an edge

2023-03-21 Thread via GitHub


lucky-bruce opened a new issue, #18405:
URL: https://github.com/apache/echarts/issues/18405

   ### What problem does this feature solve?
   
   I am working with Sankey diagram of echarts library in Angular 14 project. I 
want to highlight the related edges together when hover over an edge.
   
![image](https://user-images.githubusercontent.com/90888370/226776060-6dfbe4fc-4c50-4f53-a79a-cbbe6b6b4b58.png)
   
   
   ### What does the proposed API look like?
   
   Not sure which API can be used for this.


-- 
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



[GitHub] [echarts] yunzhongshu commented on issue #18352: [Bug or Feature] Legend can extend the gap by "''" value in new version(after 5.4.1)

2023-03-21 Thread via GitHub


yunzhongshu commented on issue #18352:
URL: https://github.com/apache/echarts/issues/18352#issuecomment-1478598050

   > It may not help much, but you can use also "\n" for larger vertical gap, 
like `data: ['bar','\n', '', 'bar2'...]`.
   
   Thanks for your reply, @helgasoft, it seems it can't fit my requirement. I 
need a specific size of the gap not only one unit, In the previous version, I 
can add the number of "''" to control the size of the gap.


-- 
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



[GitHub] [echarts] github-actions[bot] closed issue #14466: Configuration Interval Issues such as Pie Charts and sunBrust Charts

2023-03-21 Thread via GitHub


github-actions[bot] closed issue #14466: Configuration Interval Issues such as 
Pie Charts and sunBrust Charts
URL: https://github.com/apache/echarts/issues/14466


-- 
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



[GitHub] [echarts] github-actions[bot] commented on issue #14466: Configuration Interval Issues such as Pie Charts and sunBrust Charts

2023-03-21 Thread via GitHub


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

   This issue has been automatically closed because it did not have recent 
activity. If this remains to be a problem with the latest version of Apache 
ECharts, please open a new issue and link this to it. Thanks!


-- 
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



[GitHub] [echarts] github-actions[bot] closed issue #14461: Y axis not displayed if canvas is smaller 150px

2023-03-21 Thread via GitHub


github-actions[bot] closed issue #14461: Y axis not displayed if canvas is 
smaller 150px
URL: https://github.com/apache/echarts/issues/14461


-- 
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



[GitHub] [echarts] github-actions[bot] commented on issue #14461: Y axis not displayed if canvas is smaller 150px

2023-03-21 Thread via GitHub


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

   This issue has been automatically closed because it did not have recent 
activity. If this remains to be a problem with the latest version of Apache 
ECharts, please open a new issue and link this to it. Thanks!


-- 
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



[GitHub] [echarts] helgasoft commented on issue #18403: [Feature] emphasis Added detailed iconStyle settings according to mouse motion.

2023-03-21 Thread via GitHub


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

   yes, possible - hover=_emphasis_ and click=_select_ 
   [Demo 
code](https://echarts.apache.org/examples/en/editor.html?c=bar-simple&code=PYBwLglsB2AEC8sDeAoWsAeBBDEDOAXMmurGAJ4gCmRA5AMYCGYVA5sAE7m0A0J6AE2aMiAbVoBZGL1i0AKgFcqM2gHUqAlXIAWClQDEOEFQGVmphdFoBdEgF8-6cjnxFUpMpRqyAbowA2SrT2jrB4VEZUhLCi_MQegsJiAIwATAAMPLAZmbDJAKy5ABy5AOy5yckVAMzp1qEeFNR0AEaMHLxx6FQAtiDajHiuyBAsPSYU_t5ILZwCEQDCwP6cdBwaMrMc8xyqEAJg2kQAnHYOXWFUU_QsAlLzdEPQrFOdCZfXYG6jvRPkU24tjslisOK1AsoskCInsDkdYMcsvRlqtZKx1lQrGc4nYSLY7ABuFAAemJZGAsHW4TAsEYADMWBxYPR_BB6ABrWAQOmweZDdYCEkAKhQPXICwGHDAADoYAAKWg9YAKcLKsAyOUASgQAD54rAxRL2jKBPgQMx6NosDcoNA5UgmjRaGBgKwXlQTFcqDcZOFIngAJLQeYYAjpOyalARlBC4lAA)


-- 
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-doc] branch master updated: Update visual-map.md

2023-03-21 Thread wangzx
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 23040fe2 Update visual-map.md
 new 7ac8df9c Merge pull request #340 from theatlasroom/patch-1
23040fe2 is described below

commit 23040fe21c63d0dcf9ce766b2e2bd9ff978a1cd6
Author: Ezekiel 
AuthorDate: Tue Mar 21 17:27:39 2023 +1100

Update visual-map.md

Minor typo fix in visualMap docs
---
 en/option/component/visual-map.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/en/option/component/visual-map.md 
b/en/option/component/visual-map.md
index 468d5fda..0af9839b 100644
--- a/en/option/component/visual-map.md
+++ b/en/option/component/visual-map.md
@@ -7,7 +7,7 @@
 
 {{ use: partial-visual-map-visual-type() }}
 
-Myltiple `visualMap` component could be defined in a chart instance, which 
enable that different dimensions of a series data are mapped to different 
visual channels.
+Multiple `visualMap` component could be defined in a chart instance, which 
enable that different dimensions of a series data are mapped to different 
visual channels.
 
 `visualMap` could be defined as [Piecewise 
(visualMapPiecewise)](~visualMap-piecewise) or [Continuous 
(visualMapContinuous)](~visualMap-continuous), which is distinguished by the 
property `type`. For instance:
 


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



[GitHub] [echarts-doc] plainheart merged pull request #340: doc: minor typo fix in visual-map.md

2023-03-21 Thread via GitHub


plainheart merged PR #340:
URL: https://github.com/apache/echarts-doc/pull/340


-- 
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



[GitHub] [echarts] roojay520 commented on a diff in pull request #18390: fix(legend): fix dataItem undefined error

2023-03-21 Thread via GitHub


roojay520 commented on code in PR #18390:
URL: https://github.com/apache/echarts/pull/18390#discussion_r1143408341


##
src/component/legend/LegendModel.ts:
##
@@ -362,6 +362,13 @@ class LegendModel 
extends ComponentMode
 name: dataItem as string
 };
 }
+
+const isNil = (val: any) => val === null || val === undefined || 
val === '';

Review Comment:
   yeh, although the series name `''` is useless for legend, it is indeed a 
valid value. I changed the code and removed the handling of `''`



-- 
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



[GitHub] [echarts] cvSoldier commented on pull request #18379: fix(lines): Lines series symbolSize cannot be updated. close #18350

2023-03-21 Thread via GitHub


cvSoldier commented on PR #18379:
URL: https://github.com/apache/echarts/pull/18379#issuecomment-1477748976

   Test case was added, but I'm a bit confused, in [Run test 
cases](https://github.com/apache/echarts/wiki/How-to-make-a-pull-request#run-test-cases)
 it is written that just need Run the related tests of the modified view, but 
after running all the test cases, I found that some of them reported errors: 
   
![image](https://user-images.githubusercontent.com/43463523/226602063-8f993535-a9e8-4ecb-8dfa-63b2b89d16f0.png)
   After debug , they did not involve the code I modified, so it is a bit 
strange whether this is my problem?
   And another question, is there no document showing how to add action in the 
test case, because I didn't find the relevant content, it took me a lot of 
time. 


-- 
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



[GitHub] [echarts] LazyJoke commented on issue #17526: [Bug] 大数据散点图缩放问题和brush时渲染问题

2023-03-21 Thread via GitHub


LazyJoke commented on issue #17526:
URL: https://github.com/apache/echarts/issues/17526#issuecomment-1477541894

   同上


-- 
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



[GitHub] [echarts] queenzk commented on issue #11539: geo3D可以主动用Js控制缩放的大小以及平移的位置吗

2023-03-21 Thread via GitHub


queenzk commented on issue #11539:
URL: https://github.com/apache/echarts/issues/11539#issuecomment-1477487131

   Excuse me, how to obtain the specific position of the clicked point in the 
coordinate system


-- 
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



[GitHub] [echarts] sobolewsk commented on a diff in pull request #18400: fix issue 15789

2023-03-21 Thread via GitHub


sobolewsk commented on code in PR #18400:
URL: https://github.com/apache/echarts/pull/18400#discussion_r1143012417


##
test/ut/spec/series/custom.test.ts:
##
@@ -69,4 +69,46 @@ describe('custom_series', function () {
 expect(resultPaletteColors).toEqual(colors);
 });
 
+it('should pass user defined data to event handlers', async () => {
+const data = [
+[10, 16,],

Review Comment:
   Thanks for reviewing. Fixed!



-- 
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



[GitHub] [echarts] joaocarlosss84 commented on issue #16703: [Question][Feature] How do you specify date format in tooltip?

2023-03-21 Thread via GitHub


joaocarlosss84 commented on issue #16703:
URL: https://github.com/apache/echarts/issues/16703#issuecomment-1477367495

   For those like me that would like to format time for a multiple series 
chart, you can use a function:
   `
   tooltip: {
 trigger: 'axis',
 axisPointer: {
   label:  {
 formatter: function(params) {
   let oT = new Date(params.value);
   return oT.toISOString();
 },
  }
   }
   `


-- 
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