Re: Binning of timeseries data, urgent question

2021-11-28 Thread Ovilia
Hi Ehsan, This behavior is because the width of bars in time series are decided by the number of bars in the viewport but ECharts doesn't provide a width option in the value (time) unit. That means, when zooming, the width stays the same as long as the number of bars does not change. If you have

Re: Series encode only shows one series?

2021-11-28 Thread Ovilia
Hi, Can you provide your full code to help us understand the problem? Thanks *Ovilia* On Sun, Nov 28, 2021 at 10:33 PM nicke wrote: > I have a dataset like: > > | City|LA |NY | > |-+---+---| > | Flight1 | 09.20 | 14.30 | > | Flight2 | 10.30 | 15.40 | > | Flight3

Binning of timeseries data, urgent question

2021-11-28 Thread Ehsan Saberian
Hello, I posted an issue in your github repo about 5 days ago. It's about binning of time series data whe XAxis type is 'time'. Solving the problem is very urgent for our team project. I would appreciate it if you can check that soon. The issue link is:

[GitHub] [echarts-handbook] susiwen8 commented on pull request #26: 基础柱状图的页面存在问题

2021-11-28 Thread GitBox
susiwen8 commented on pull request #26: URL: https://github.com/apache/echarts-handbook/pull/26#issuecomment-981220839 Please open an 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

[GitHub] [echarts-handbook] susiwen8 closed pull request #26: 基础柱状图的页面存在问题

2021-11-28 Thread GitBox
susiwen8 closed pull request #26: URL: https://github.com/apache/echarts-handbook/pull/26 -- 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:

[GitHub] [echarts-handbook] SambacFeng opened a new pull request #26: 基础柱状图的页面存在问题

2021-11-28 Thread GitBox
SambacFeng opened a new pull request #26: URL: https://github.com/apache/echarts-handbook/pull/26 柱状图样式设置的前两个示例错误的使用了堆叠柱状图的配置项 -- 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

Series encode only shows one series?

2021-11-28 Thread nicke
I have a dataset like: | City|LA |NY | |-+---+---| | Flight1 | 09.20 | 14.30 | | Flight2 | 10.30 | 15.40 | | Flight3 | 11.30 | 16.40 | When I use encode: { "x: [1,2,3 ], y: 'City'"} I only get the first line in the line-chart. If I do encode: { x: [2,3 ], y: 'City'}