[GitHub] [echarts] kchjxxgh commented on issue #6898: 关系图 dblclick事件触屏无效

2021-11-11 Thread GitBox


kchjxxgh commented on issue #6898:
URL: https://github.com/apache/echarts/issues/6898#issuecomment-966896934


   怎么解决呢?监听单击延时么?


-- 
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] yousefwalid commented on issue #16056: Add the ability to add different colors in different segments to a single specific series

2021-11-11 Thread GitBox


yousefwalid commented on issue #16056:
URL: https://github.com/apache/echarts/issues/16056#issuecomment-966880970


   @pissang I don't think this is relevant to my request
   Let me clarify the problem here a bit.
   
   --
   
   Assume we have this chart
   ```js
   option = {
   xAxis: {
   type: 'value',
   },
   yAxis: {
   type: 'value'
   },
   series: [
   {
   data: [[1,1], [2,3], [4,5], [5,10]],
   type: 'line',
   lineStyle: {
   color: 'red'
   }
   }, 
   {
   data: [[1,4], [2,6], [4,9], [5,12]],
   type: 'line',
   lineStyle: {
   color: 'blue'
   }
   }
   ]
   };
   ```
   This produces this output, where there is one series with red line color and 
another series with blue line color
   
![image](https://user-images.githubusercontent.com/40529934/141425514-c0a29f66-08d4-4226-b15f-37deae634e9d.png)
   
   The behavior I want to produce is allowing to change the color of each 
section of the line, so for instance, something like this:
   
   ```js
   option = {
   xAxis: {
   type: 'value',
   },
   yAxis: {
   type: 'value'
   },
   series: [
   {
   data: [
   {
   value: [1,1],
   lineStyle: {
   color: 'green'
   }
   },
   {
   value: [2,3],
   lineStyle: {
   color: 'red'
   }
   },
   {
   value: [4,5],
   lineStyle: {
   color: 'green'
   }
   },
   {
   value: [5,10]
   }
   ],
   type: 'line'
   }, 
   {
   data: [[1,4], [2,6], [4,9], [5,12]],
   type: 'line',
   lineStyle: {
   color: 'blue'
   }
   }
   ]
   };
   ```
   
   would produce the following chart
   
![Untitled-1](https://user-images.githubusercontent.com/40529934/141426491-3687d7f6-a617-4c5e-89c3-f3b186c0aa68.jpg)
   
   where one line has first section in green, second in red, third in green, 
but the other line is unaffected.


-- 
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] deviceGT edited a comment on issue #11382: echarts中实现多个tooltip存在

2021-11-11 Thread GitBox


deviceGT edited a comment on issue #11382:
URL: https://github.com/apache/echarts/issues/11382#issuecomment-966864614


   @rascaler 我的单个实例用的 graphic 做,暂时还没发现有问题,只是感觉性能上可能不太高,可能更容易卡顿.
   主要是我这边要允许多个指标,数量可增可减,用grid控制布局比较容易一点


-- 
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] deviceGT commented on issue #11382: echarts中实现多个tooltip存在

2021-11-11 Thread GitBox


deviceGT commented on issue #11382:
URL: https://github.com/apache/echarts/issues/11382#issuecomment-966864614


   @rascaler 我的单个实例用的 graphic 做,暂时还没发现有问题,只是感觉性能上可能不太高,可能更容易卡顿


-- 
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] pissang commented on issue #16044: CSS variables support

2021-11-11 Thread GitBox


pissang commented on issue #16044:
URL: https://github.com/apache/echarts/issues/16044#issuecomment-966830034


   Thanks for the explaination. I'm afraid we won't add this feature in the 
near future. We are trying to keep our API design independent from platforms so 
developers can have consistent experience cross different platforms.


-- 
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] pissang commented on issue #16042: Not Showing Elements When Hovering on Heatmap Charts

2021-11-11 Thread GitBox


pissang commented on issue #16042:
URL: https://github.com/apache/echarts/issues/16042#issuecomment-966829321


   @Panxoat I'm not sure but are you using `setOption` update when mousemove?


-- 
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] pissang edited a comment on issue #16042: Not Showing Elements When Hovering on Heatmap Charts

2021-11-11 Thread GitBox


pissang edited a comment on issue #16042:
URL: https://github.com/apache/echarts/issues/16042#issuecomment-966829321


   @Panxoat I'm not sure but are you using `setOption` or other update when 
mousemove?


-- 
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] Panxoat commented on issue #16042: Not Showing Elements When Hovering on Heatmap Charts

2021-11-11 Thread GitBox


Panxoat commented on issue #16042:
URL: https://github.com/apache/echarts/issues/16042#issuecomment-966825591


   > Hi, I can't reproduce this issue, can you provide a minimal reproducible 
demo to us?
   
   Sorry, I tried to reproduce the same issue in demo but it didn't show up in 
demo. 
   
   I think this issue is caused by too much calculation we put in the chart for 
business logics. I also used a basic option of the library instead but it still 
has a same issue that I had before. 
   
   I hope to figure out for this video
   
   
https://user-images.githubusercontent.com/49806316/141412544-0abaf485-1fe9-4ddc-accc-a3c05fa635e0.mov
   
   
   


-- 
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] dadazhouRenee commented on issue #16018: tooltip.axisPointer.type 可以支持数组吗?

2021-11-11 Thread GitBox


dadazhouRenee commented on issue #16018:
URL: https://github.com/apache/echarts/issues/16018#issuecomment-966781574


   多个柱状和折线组合的情况下 希望有shadow背景的同时 也可以有辅助线line @pissang 


-- 
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] pissang commented on issue #16018: tooltip.axisPointer.type 可以支持数组吗?

2021-11-11 Thread GitBox


pissang commented on issue #16018:
URL: https://github.com/apache/echarts/issues/16018#issuecomment-966780674


   是期望怎么样的展现形式?


-- 
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] pissang commented on issue #16056: Add the ability to add different colors in different segments to a single specific series

2021-11-11 Thread GitBox


pissang commented on issue #16056:
URL: https://github.com/apache/echarts/issues/16056#issuecomment-966780267


   I'm not sure what strategy are you using. A better way is group your line 
segments by colors. For example:
   
   ```ts
   series: colorStrategies.map(colorStrategy => {
 return data.map(item => {
return checkIfUseThisColor(item, colorStrategy)
  ? colorStrategy.color
  : '-' // Not display this data item.
 })
   });
   ```


-- 
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] Ovilia commented on issue #15488: Display the nearest data of different series in one tooltip.

2021-11-11 Thread GitBox


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


   @Raphyyy Thanks for reporting. We are going to work on `axisPointer.snap` in 
the near future.


-- 
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 pull request #11506: Update tooltip-setOption.html

2021-11-11 Thread GitBox


github-actions[bot] commented on pull request #11506:
URL: https://github.com/apache/echarts/pull/11506#issuecomment-966624249


   This PR has been automatically closed because it has not had recent 
activity. Sorry for that and we are looking forward to your next 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



[GitHub] [echarts] github-actions[bot] commented on issue #11540: Request for graph link label rotation

2021-11-11 Thread GitBox


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


   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 pull request #11506: Update tooltip-setOption.html

2021-11-11 Thread GitBox


github-actions[bot] closed pull request #11506:
URL: https://github.com/apache/echarts/pull/11506


   


-- 
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 #11540: Request for graph link label rotation

2021-11-11 Thread GitBox


github-actions[bot] closed issue #11540:
URL: https://github.com/apache/echarts/issues/11540


   


-- 
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 #10172: Axis name padding does not account for axis labels

2021-11-11 Thread GitBox


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


   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



[GitHub] [echarts] chenlijun99 commented on issue #14689: Using sampling with connectNulls connects regular datapoints with null ones when zoomed out

2021-11-11 Thread GitBox


chenlijun99 commented on issue #14689:
URL: https://github.com/apache/echarts/issues/14689#issuecomment-966557829


   I reported the same issue in #13228


-- 
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] echarts-bot[bot] commented on issue #16056: Add the ability to add different colors in different segments to a single specific series

2021-11-11 Thread GitBox


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


   Hi! We've received your issue and please be patient to get responded. 
   The average response time is expected to be within one day for weekdays.
   
   In the meanwhile, please make sure that it contains **a minimum reproducible 
demo** and necessary **images** to illustrate. Otherwise, our committers will 
ask you to do so.
   
   *A minimum reproducible demo* should contain as little data and components 
as possible but can still illustrate your problem. This is the best way for us 
to reproduce it and solve the problem faster.
   
   You may also check out the [API](https://echarts.apache.org/api.html) and 
[chart option](https://echarts.apache.org/option.html) to get the answer.
   
   If you don't get helped for a long time (over a week) or have an urgent 
question to ask, you may also send an email to d...@echarts.apache.org. Please 
attach the issue link if it's a technical question.
   
   If you are interested in the project, you may also subscribe to our [mailing 
list](https://echarts.apache.org/maillist.html).
   
   Have a nice day! 


-- 
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] yousefwalid opened a new issue #16056: Add the ability to add different colors in different segments to a single specific series

2021-11-11 Thread GitBox


yousefwalid opened a new issue #16056:
URL: https://github.com/apache/echarts/issues/16056


   ### What problem does this feature solve?
   There is no way to give multiple colors to a single series, The expected 
behavior is something similar to VisualMap, but for a single series instead of 
the whole chart.
   
   ### What does the proposed API look like?
   Add an object inside the series options to add a visualMap option on it
   something like
   ```js
   {
 visualMap: {
   ...
 }
   }
   ```
   
   Or some other way to provide the same functionality such as adding colors 
per series data points.
   
   
   


-- 
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] Lisianthus-A commented on issue #16044: CSS variables support

2021-11-11 Thread GitBox


Lisianthus-A commented on issue #16044:
URL: https://github.com/apache/echarts/issues/16044#issuecomment-966465690


   > Correct me If I'm wrong. We need to know the element to have these CSS 
variables? If so, I think it's hard to get these variables from echarts side 
because the lack of this information. Expect these variables are all in the 
`:root`
   
   CSS variables are scoped and child elements inherit these variables from 
their parent. It is possible to get the value of a CSS variable from echarts 
instance dom.


-- 
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] Raphyyy commented on issue #15488: Display the nearest data of different series in one tooltip.

2021-11-11 Thread GitBox


Raphyyy commented on issue #15488:
URL: https://github.com/apache/echarts/issues/15488#issuecomment-966421387


   Hello I am giving a +1 on this.
   Typically I use Echarts to display time series from sensors and they don't 
emit values at the same time.
   The tooltip is quite useless and get flicky if time difference are not the 
same between data series : 
   https://jsfiddle.net/x035faqe/2/
   `axisPointer.snap: true` do not seems to change something.
   I think it could be nice to have an option to get a tooltip that is 
constantly showing all series in it with the nearest value. Maybe an option to 
seek series' nearest point with a limit of `n` seconds to not display value `n` 
seconds far from each others in the same tooltip.


-- 
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 next updated: fix: show tooltip when all val are null

2021-11-11 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/next by this push:
 new 7e05fa5  fix: show tooltip when all val are null
 new e7daf0c  Merge pull request #16001 from kongmoumou/fix-tooltip
7e05fa5 is described below

commit 7e05fa547fd758ce28f36efbbfe5bc6f80dfbf5f
Author: kongmoumou 
AuthorDate: Wed Nov 3 12:39:47 2021 +0800

fix: show tooltip when all val are null

fix #15757
---
 src/chart/helper/createSeriesData.ts | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/chart/helper/createSeriesData.ts 
b/src/chart/helper/createSeriesData.ts
index 704eed4..4e1bfd7 100644
--- a/src/chart/helper/createSeriesData.ts
+++ b/src/chart/helper/createSeriesData.ts
@@ -183,8 +183,7 @@ function createSeriesData(
 function isNeedCompleteOrdinalData(source: Source) {
 if (source.sourceFormat === SOURCE_FORMAT_ORIGINAL) {
 const sampleItem = firstDataNotNull(source.data as ArrayLike || 
[]);
-return sampleItem != null
-&& !zrUtil.isArray(getDataItemValue(sampleItem));
+return !zrUtil.isArray(getDataItemValue(sampleItem));
 }
 }
 

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



[GitHub] [echarts] echarts-bot[bot] commented on pull request #16001: fix: should show tooltip when all value are null

2021-11-11 Thread GitBox


echarts-bot[bot] commented on pull request #16001:
URL: https://github.com/apache/echarts/pull/16001#issuecomment-966418084


   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



[GitHub] [echarts] 100pah merged pull request #16001: fix: should show tooltip when all value are null

2021-11-11 Thread GitBox


100pah merged pull request #16001:
URL: https://github.com/apache/echarts/pull/16001


   


-- 
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] LeaVerou edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


LeaVerou edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966413379


   > Instead of changing the source code, how about handling the `.js` 
extension name in a build script?
   
   Yup, what @plainheart is saying is exactly what I was suggesting. Keep your 
source code as-is, just mirror the structure of the `lib` directory in `dist`, 
with output files that *can* be used in a browser.


-- 
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] LeaVerou commented on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


LeaVerou commented on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966413379


   > Instead of changing the source code, how about handling the `.js` 
extension name in a build script?
   
   Yeah, that's what I was suggesting. Keep your source code as-is, just mirror 
the structure of the `lib` directory in `dist`, with output files that *can* be 
used in a browser.


-- 
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] xvaara commented on issue #15871: Datazoom mousewheel and keypress combination wonky.

2021-11-11 Thread GitBox


xvaara commented on issue #15871:
URL: https://github.com/apache/echarts/issues/15871#issuecomment-966387399


   Also I noticed that if `zoomOnMouseWheel: 'shift'` scrolling without shit 
doesn't work on the page (if hovering the chart)


-- 
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] pissang commented on issue #16014: 在一个项目中如何同时采用echarts4.0和5.0

2021-11-11 Thread GitBox


pissang commented on issue #16014:
URL: https://github.com/apache/echarts/issues/16014#issuecomment-966369883


   The link 
https://stackoverflow.com/questions/26414587/how-to-install-multiple-versions-of-package-using-npm
 in the @Ovilia comment is a solution.


-- 
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] pissang commented on issue #16042: Not Showing Elements When Hovering on Heatmap Charts

2021-11-11 Thread GitBox


pissang commented on issue #16042:
URL: https://github.com/apache/echarts/issues/16042#issuecomment-966366967


   Hi, I can't reproduce this issue, can you provide a minimal reproducible 
demo to us?


-- 
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] pissang commented on issue #16044: CSS variables support

2021-11-11 Thread GitBox


pissang commented on issue #16044:
URL: https://github.com/apache/echarts/issues/16044#issuecomment-966360906


   Correct me If I'm wrong. We need to know the element to have these CSS 
variables? If so, I think it's hard to get these variables from echarts side 
because the lack of this information. Expect these variables are all in the 
`:root`


-- 
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] plainheart commented on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


plainheart commented on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966353872


   Instead of changing the source code, how about handling the `.js` extension 
name in a build script?


-- 
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] echarts-bot[bot] commented on issue #16053: 用echarts通过geo给地图设置阴影,在缩放和拖动时一卡一卡的

2021-11-11 Thread GitBox


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


   @liuhao153 Please provide a minimum reproducible demo for the issue either 
with https://codepen.io/Ovilia/pen/dyYWXWM , 
https://www.makeapie.com/editor.html or 
https://codesandbox.io/s/mystifying-bash-2uthz.
   
   *A minimum reproducible demo* should contain as little data and components 
as possible but can still illustrate your problem. This is the best way for us 
to reproduce it and solve the problem faster.


-- 
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] pissang edited a comment on issue #16055: Setting connectNulls:true in radar charts doesn't work

2021-11-11 Thread GitBox


pissang edited a comment on issue #16055:
URL: https://github.com/apache/echarts/issues/16055#issuecomment-966352346


   radar chart don't support this option yet.


-- 
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] pissang commented on issue #16055: Setting connectNulls:true in radar charts doesn't work

2021-11-11 Thread GitBox


pissang commented on issue #16055:
URL: https://github.com/apache/echarts/issues/16055#issuecomment-966352346


   radar charts don't support this option yet.


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js` extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
is better than importing a single large bundled file.  If the scenario exits, I 
think we can plan to add '.js' extension in our `import` statements to fix this 
issue. But after this change, we may still need `import-map` to resolve the 
zrender dependency from npm
   
   @plainheart We put our esm modules in the `lib` folder now


-- 
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] schzh opened a new issue #16055: Setting connectNulls:true in radar charts doesn't work

2021-11-11 Thread GitBox


schzh opened a new issue #16055:
URL: https://github.com/apache/echarts/issues/16055


   ### Version
   5.2.2
   
   ### Steps to reproduce
   Setting connectNulls:true in radar charts doesn't work
   
   ### What is expected?
   Setting connectNulls:true in radar charts works as in line chart
   
   ### What is actually happening?
   it gives a point of zero
   
   
   


-- 
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] echarts-bot[bot] commented on issue #16055: Setting connectNulls:true in radar charts doesn't work

2021-11-11 Thread GitBox


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


   Hi! We've received your issue and please be patient to get responded. 
   The average response time is expected to be within one day for weekdays.
   
   In the meanwhile, please make sure that it contains **a minimum reproducible 
demo** and necessary **images** to illustrate. Otherwise, our committers will 
ask you to do so.
   
   *A minimum reproducible demo* should contain as little data and components 
as possible but can still illustrate your problem. This is the best way for us 
to reproduce it and solve the problem faster.
   
   You may also check out the [API](https://echarts.apache.org/api.html) and 
[chart option](https://echarts.apache.org/option.html) to get the answer.
   
   If you don't get helped for a long time (over a week) or have an urgent 
question to ask, you may also send an email to d...@echarts.apache.org. Please 
attach the issue link if it's a technical question.
   
   If you are interested in the project, you may also subscribe to our [mailing 
list](https://echarts.apache.org/maillist.html).
   
   Have a nice day! 


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js` extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
is better than importing a single large bundled file.  If it exits, I think we 
can plan to add '.js' extension in our `import` statements to fix this issue. 
But after this change, we may still need `import-map` to resolve the zrender 
dependency from npm
   
   @plainheart We put our esm modules in the `lib` folder now


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js` extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
has the scenario rather than importing a single large bundled file.  If it 
exits, I think we can plan to add '.js' extension in our `import` statements to 
fix this issue. But after this change, we may still need `import-map` to 
resolve the zrender dependency from npm
   
   @plainheart We put our esm modules in the `lib` folder now


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js` extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
has the scenario rather than importing a single large bundled file.  If it 
exits, I think we can plan to add '.js' extension in our `import` statements to 
fix this issue. But after this change, we still need `import-map` to resolve 
the zrender dependency from npm
   
   @plainheart We put our esm modules in the `lib` folder now


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js` extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
has the scenario rather than importing a single large bundled file.  If it 
exits, I think we can plan to add '.js' extension to fix this issue in our 
`import` statements. But after this change, we still need `import-map` to 
resolve the zrender dependency from npm
   
   @plainheart We put our esm modules in the `lib` folder now


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js` extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
has the scenario rather than importing a single large bundled file.  If there 
is a scenario, I think we can plan to add '.js' extension to fix this issue in 
our `import` statements. But after this change, we still need `import-map` to 
resolve the zrender dependency from npm
   
   @plainheart We put our esm modules in the `lib` folder now


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
has the scenario rather than importing a single large bundled file.  If there 
is a scenario, I think we can plan to add '.js' extension to fix this issue in 
our `import` statements. But after this change, we still need `import-map` to 
resolve the zrender dependency from npm


-- 
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] pissang edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
has the scenario rather than importing a single large bundled file.  If there 
is a scenario, I think we can plan to add '.js' extension to fix this issue in 
our `import` statements. But after this change, we still need `import-map` to 
resolve the zrender dependency in node_modules


-- 
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] pissang commented on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


pissang commented on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966346256


   Hi, I'm afraid we can only import [the whole 
bundle](https://cdn.jsdelivr.net/npm/echarts/dist/echarts.esm.js) in the 
browser now. 
   
   Importing ES module in the browser needs to have `.js` extension explictly. 
But we don't use `.js extension in our source code. If we importing modules 
from 'echarts/core', it will try to load other modules without giving `.js` 
extension and failed. 
   
   `import-map` seems to be a potential solution, but it don't have wildcard to 
match all the paths.
   
   I'm not sure if importing specific modules with hundreds of dependency files 
has the scenario rather than importing a single large bundled file.  If there 
is a scenario, I think we can plan to add '.js' extension to fix this issue in 
our `import` statements.


-- 
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] plainheart edited a comment on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


plainheart edited a comment on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966345411


   I remember we ever built ES modules into the `esm` directory in several 
previous versions since 
[v5.0.0](https://www.jsdelivr.com/package/npm/echarts?version=5.0.2). But it 
seems only a minimized version remained since 
[v5.0.2](https://www.jsdelivr.com/package/npm/echarts?version=5.0.2). It would 
be great if we provide such a feature like the 
[uuid](https://www.jsdelivr.com/package/npm/uuid?path=dist) package, which 
provides ESM support for both browser and Node.
   
   ping @pissang


-- 
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] plainheart commented on issue #16054: Importing specific modules from CDN

2021-11-11 Thread GitBox


plainheart commented on issue #16054:
URL: https://github.com/apache/echarts/issues/16054#issuecomment-966345411


   I remember we ever built ES modules into the `esm` directory in several 
previous versions since 
[v5.0.0](https://www.jsdelivr.com/package/npm/echarts?version=5.0.2). But it 
seems only a minimized version remained since 
[v5.0.2](https://www.jsdelivr.com/package/npm/echarts?version=5.0.2). It would 
be great if we provide such a feature like the 
[uuid](https://www.jsdelivr.com/package/npm/uuid?path=dist) package, which 
provides ESM support for both browser and Node.


-- 
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] LeaVerou opened a new issue #16054: Using SVGRenderer from CDN

2021-11-11 Thread GitBox


LeaVerou opened a new issue #16054:
URL: https://github.com/apache/echarts/issues/16054


   ### What problem does this feature solve?
   I'm not sure if this due to lack of docs around this, but it does not seem 
possible to use SVGRenderer when using echarts from jsdelivr. Also, it does not 
seem possible to import individual modules either and let the browser do the 
tree-shaking, only one large monolithic bundle. 
   
   ### What does the proposed API look like?
   It would be good to have built versions on jsdelivr of all modules one can 
import via the npm syntax, so that people can do things like [this][1] while 
using a CDN as well. 
   
   [1]: 
https://echarts.apache.org/handbook/en/basics/import#importing-required-charts-and-components-to-have-minimal-bundle
   
   
   


-- 
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] echarts-bot[bot] commented on issue #16054: Using SVGRenderer from CDN

2021-11-11 Thread GitBox


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


   Hi! We've received your issue and please be patient to get responded. 
   The average response time is expected to be within one day for weekdays.
   
   In the meanwhile, please make sure that it contains **a minimum reproducible 
demo** and necessary **images** to illustrate. Otherwise, our committers will 
ask you to do so.
   
   *A minimum reproducible demo* should contain as little data and components 
as possible but can still illustrate your problem. This is the best way for us 
to reproduce it and solve the problem faster.
   
   You may also check out the [API](https://echarts.apache.org/api.html) and 
[chart option](https://echarts.apache.org/option.html) to get the answer.
   
   If you don't get helped for a long time (over a week) or have an urgent 
question to ask, you may also send an email to d...@echarts.apache.org. Please 
attach the issue link if it's a technical question.
   
   If you are interested in the project, you may also subscribe to our [mailing 
list](https://echarts.apache.org/maillist.html).
   
   Have a nice day! 


-- 
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] echarts-bot[bot] commented on issue #16053: 用echarts通过geo给地图设置阴影,在缩放和拖动时一卡一卡的

2021-11-11 Thread GitBox


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






-- 
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] liuhao153 opened a new issue #16053: 用echarts通过geo给地图设置阴影,在缩放和拖动时一卡一卡的

2021-11-11 Thread GitBox


liuhao153 opened a new issue #16053:
URL: https://github.com/apache/echarts/issues/16053


   ### Version
   4.9.0
   
   ### Steps to reproduce
   拖动地图卡顿
   
   ### What is expected?
   拖动地图不卡顿
   
   ### What is actually happening?
   拖动地图卡顿
   
   
   


-- 
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] liuhao153 opened a new issue #16052: 用echarts通过geo给地图设置阴影,在缩放和拖动时一卡一卡的。

2021-11-11 Thread GitBox


liuhao153 opened a new issue #16052:
URL: https://github.com/apache/echarts/issues/16052


   
   
   This issue is not created by 
[echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will 
be soon closed.
   


-- 
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] echarts-bot[bot] commented on issue #16052: 用echarts通过geo给地图设置阴影,在缩放和拖动时一卡一卡的。

2021-11-11 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 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



[GitHub] [echarts] echarts-bot[bot] closed issue #16052: 用echarts通过geo给地图设置阴影,在缩放和拖动时一卡一卡的。

2021-11-11 Thread GitBox


echarts-bot[bot] closed issue #16052:
URL: https://github.com/apache/echarts/issues/16052


   


-- 
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] echarts-bot[bot] closed issue #16051: https://echarts.apache.org/ 打不开了

2021-11-11 Thread GitBox


echarts-bot[bot] closed issue #16051:
URL: https://github.com/apache/echarts/issues/16051


   


-- 
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] echarts-bot[bot] commented on issue #16051: https://echarts.apache.org/ 打不开了

2021-11-11 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 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



[GitHub] [echarts] daxiazilong opened a new issue #16051: https://echarts.apache.org/ 打不开了

2021-11-11 Thread GitBox


daxiazilong opened a new issue #16051:
URL: https://github.com/apache/echarts/issues/16051


   
   
   This issue is not created by 
[echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will 
be soon closed.
   


-- 
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] rajonzkz opened a new issue #16050: xAxis:type为time时,怎么只显示series.data里存在的时间数据

2021-11-11 Thread GitBox


rajonzkz opened a new issue #16050:
URL: https://github.com/apache/echarts/issues/16050


   ![Uploading image.png…]()
   ![Uploading image.png…]()
   


-- 
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] echarts-bot[bot] closed issue #16050: xAxis:type为time时,怎么只显示series.data里存在的时间数据

2021-11-11 Thread GitBox


echarts-bot[bot] closed issue #16050:
URL: https://github.com/apache/echarts/issues/16050


   


-- 
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] echarts-bot[bot] commented on issue #16050: xAxis:type为time时,怎么只显示series.data里存在的时间数据

2021-11-11 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 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



[GitHub] [echarts] echarts-bot[bot] commented on issue #16049: 求助: echarts 树形图 里面的线 如何添加末尾的箭头?

2021-11-11 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 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



[GitHub] [echarts] echarts-bot[bot] closed issue #16049: 求助: echarts 树形图 里面的线 如何添加末尾的箭头?

2021-11-11 Thread GitBox


echarts-bot[bot] closed issue #16049:
URL: https://github.com/apache/echarts/issues/16049


   


-- 
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] Jiujiale opened a new issue #16049: 求助: echarts 树形图 里面的线 如何添加末尾的箭头?

2021-11-11 Thread GitBox


Jiujiale opened a new issue #16049:
URL: https://github.com/apache/echarts/issues/16049


   
   
   This issue is not created by 
[echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will 
be soon closed.
   


-- 
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] xianchenxy closed issue #15446: showTip无法打开 series' value为 '-'对应的 tooltip

2021-11-11 Thread GitBox


xianchenxy closed issue #15446:
URL: https://github.com/apache/echarts/issues/15446


   


-- 
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] xianchenxy commented on issue #15446: showTip无法打开 series' value为 '-'对应的 tooltip

2021-11-11 Thread GitBox


xianchenxy commented on issue #15446:
URL: https://github.com/apache/echarts/issues/15446#issuecomment-966074348


   > @xianchenxy 是的,3 是很早的版本了,建议还是升级到最新版本。如果不准备升级,可以根据到时候的 pr,自己调整 ECharts 
源码并打包一个版本。
   
   了解,感谢解答


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