Re: [I] [Bug] Can't see brush button in toolbox [echarts]

2024-06-06 Thread via GitHub


miyanyan commented on issue #20006:
URL: https://github.com/apache/echarts/issues/20006#issuecomment-2153660451

   > Try using a public _content delivery network_ (CDN) like 
https://cdn.jsdelivr.net/npm/echarts@latest/dist/echarts.min.js, instead of 
downloading from Github source.
   
   This works well, but I wonder about the difference, maybe this's no icon in 
the github release?


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

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

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


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



Re: [I] [Bug] Can't see brush button in toolbox [echarts]

2024-06-06 Thread via GitHub


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

   Try using a public _content delivery network_ (CDN) like 
https://cdn.jsdelivr.net/npm/echarts@latest/dist/echarts.min.js, instead of 
downloading from Github source.


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

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

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


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



Re: [I] [Bug] 横向柱状图想要实现 label 最后测对齐 [echarts]

2024-06-06 Thread via GitHub


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

   
[bar.label.position](https://echarts.apache.org/en/option.html#series-bar.label.position)
 is not alignment. 
   There is no API setting to align all labels to the rightmost side of a bar 
chart. You'll need to calculate 
[offset](https://echarts.apache.org/en/option.html#series-bar.label.offset) 
[x,0] for each bar.


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

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

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


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



Re: [I] Stack bar plot doesn't show correctly when under specific x axis range and with dataZoom given [echarts]

2024-06-06 Thread via GitHub


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

   API for [stack](https://echarts.apache.org/en/option.html#series-bar.stack) 
says _"Name of stack. On the same category axis"_.
   Your _xAxis_ type is 'value' (not 'category') and therefore bars are not 
stacked, and some are hidden by others and do not show up. [Demo 
fix](https://echarts.apache.org/examples/en/editor.html?c=line-simple=PYBwLglsB2AEC8sDeAoWsAmBDMWDOApmAFzJrqx7ACuATgMYGkDa5FszAjADSycAMvAKwBdbmwrMATLykzYAFjET0zAMyyAHLyXj2qhTo2xRe_cyE6AnLwEiJy9hggBbAtDxQPLAOS1gAO4-vD70nMGwoVI-9ugAvmYAHgCCiRB4pEjsLhDQpILZWImkAGxmAPTlYACeIEyRAG5YADbUBMESNXWkoTgEAObAtNU-5Ank1anpmePo2LgAWsDALiwSqPqwXfU-uZ4Y7RKzFBv62z14zRAHtKPsceSOlAS0EAQZHOsqsNDAAPrzLBrTaqHh8fhPTbSWRSSHmYxSTRw9jMQyKNTIySWRRWWL6THnSIAIywt14eFw9AA1j1EhF3PRgAdiEhqsROA97mZ0Kd2L8ATggZ8QRwwaZvqp5LoJRxjNKRajhJjVNi7N8CbUdiSyegKVhqbT6dBGczWcQpJyKJb7HEANxAA)


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

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

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


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



[I] [Bug] Overflow property missing from AxisNameTextStyleOption type [echarts]

2024-06-06 Thread via GitHub


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

   ### Version
   
   5.5.0
   
   ### Link to Minimal Reproduction
   
   
https://codesandbox.io/p/sandbox/echarts-overflow-property-typescript-problem-fkp73v?file=%2Fsrc%2FchartOptions.ts%3A142%2C11
   
   ### Steps to Reproduce
   
   1. Create a project using echarts 5.5.0 and typescript 4.4.0+ 
   2. Configure a chart with `yAxis.nameTextStyle.overflow` set to anything
   3. Hover over the red squiggly that will appear under `overflow: ` 
and view the error message
   
   ### Current Behavior
   
   In the code sandbox attached, you can view the behavior in the 
`chartOptions.ts` file (scroll down below all the data - I copied a graph 
directly from the eCharts demo tabs and just added the necessary code to the 
`yAxis` to recreate the error).
   
   When you follow the steps above, you will receive a typescript warning that 
the `overflow` property is not part of the `AxisNameTextStyleOption` type. 
Meanwhile the documentation states that it should be a valid property: 
[docs](https://echarts.apache.org/en/option.html#yAxis.nameTextStyle.overflow)
   
   ```
   Type '{ width: number; overflow: string; }' is not assignable to type 
'AxisNameTextStyleOption'.
 Object literal may only specify known properties, and 'overflow' does not 
exist in type 'AxisNameTextStyleOption'.typescript(2322)
   echarts.d.ts(2389, 5): The expected type comes from property 'nameTextStyle' 
which is declared here on type 'YAXisOption'
   ```
   
   ### Expected Behavior
   
   I should be able to define the `overflow` property as part of the 
`nameTextStyle` object without TypeScript errors.
   
   ### Environment
   
   ```markdown
   - OS: macOS Ventura 
   - Browser: Chrome latest version
   - Framework: NextJS 14.1.3
   ```
   
   
   ### Any additional comments?
   
   _No response_


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

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

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


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



Re: [I] [Bug] can not receive click event when click on tree edge. [echarts]

2024-06-06 Thread via GitHub


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

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


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

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

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


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



Re: [I] 在cartesian2d坐标系下将scatter图转换成heatmap密度图 [echarts]

2024-06-06 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Bug] Incorrect Sum using echart aggregate library [echarts]

2024-06-06 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Feature] the cross focus is fixed on the polyline [echarts]

2024-06-06 Thread via GitHub


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

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


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

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

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


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



Re: [I] Overflow Scroll for Echarts Containers [echarts]

2024-06-06 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Feature] 希望可以为折线图lineStyle.width 添加一个回调函数 [echarts]

2024-06-06 Thread via GitHub


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

   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



Re: [I] [Feature] 希望可以为折线图lineStyle.width 添加一个回调函数 [echarts]

2024-06-06 Thread via GitHub


github-actions[bot] closed issue #17137: [Feature] 希望可以为折线图lineStyle.width 
添加一个回调函数
URL: https://github.com/apache/echarts/issues/17137


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

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

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


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



Re: [I] 如何读取dataset中转换后的数据 [echarts]

2024-06-06 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Feature] Render inner and outer labels for pie chart [echarts]

2024-06-06 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Bug] The yAxis configuration item nameTextStyle.width does not work。yAxis的name配置项TextStyle.width不起作用 [echarts]

2024-06-06 Thread via GitHub


mkf62 commented on issue #18408:
URL: https://github.com/apache/echarts/issues/18408#issuecomment-2153359296

   This is still broken, or something related to this issue is. Using 
TypeScript, the overflow property does not exist in echarts.d.ts:
   
   This code
   ```
   let yAxisConfig: YAXisComponentOption[] = [
 {
name: axisLabel1.join(' '),
nameRotate: 90,
nameLocation: 'middle',
nameGap: 55,
nameTextStyle: {
backgroundColor: 'lightgreen',
width: 50,
overflow: 'break',
},
type: 'value',
min: 'dataMin',
max: 'dataMax',
 }
   ]
   ```
   
   Produces this typescript error:
   ```
   Object literal may only specify known properties, and 'overflow' does not 
exist in type 'AxisNameTextStyleOption'.ts(2353)
   echarts.d.ts(2389, 5): The expected type comes from property 'nameTextStyle' 
which is declared here on type 'YAXisOption'
   ```
   
   Relevant sections of `echarts.ds.ts`:
   ```
   export (..., YAXisOption as YAXisComponentOption, ...}
   ```
   ```
   interface AxisBaseOptionCommon extends ComponentOption, AnimationOptionMixin 
{
   //...
   nameTextStyle?: AxisNameTextStyleOption;
   //...
   ```
   ```
   interface AxisNameTextStyleOption extends TextCommonOption {
   rich?: Dictionary;
   }
   ```
   ```
   interface TextCommonOption extends ShadowOptionMixin {
   color?: string;
   fontStyle?: ZRFontStyle;
   fontWeight?: ZRFontWeight;
   fontFamily?: string;
   fontSize?: number | string;
   align?: HorizontalAlign;
   verticalAlign?: VerticalAlign;
   baseline?: VerticalAlign;
   opacity?: number;
   lineHeight?: number;
   backgroundColor?: ColorString | {
   image: ImageLike | string;
   };
   borderColor?: string;
   borderWidth?: number;
   borderType?: ZRLineType;
   borderDashOffset?: number;
   borderRadius?: number | number[];
   padding?: number | number[];
   width?: number | string;
   height?: number;
   textBorderColor?: string;
   textBorderWidth?: number;
   textBorderType?: ZRLineType;
   textBorderDashOffset?: number;
   textShadowBlur?: number;
   textShadowColor?: string;
   textShadowOffsetX?: number;
   textShadowOffsetY?: number;
   tag?: string;
   }
   ```
   
   The `overflow` property is not present as the documentation describes.


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

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

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


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



[I] Stack bar plot doesn't show correctly when under specific x axis range and with dataZoom given [echarts]

2024-06-06 Thread via GitHub


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

   ### Version
   
   5.5.0
   
   ### Link to Minimal Reproduction
   
   
https://codesandbox.io/p/sandbox/proud-frost-jdgn8t?file=%2Fsrc%2Findex.js%3A17%2C13=%257B%2522sidebarPanel%2522%253A%2522EXPLORER%2522%252C%2522rootPanelGroup%2522%253A%257B%2522direction%2522%253A%2522horizontal%2522%252C%2522contentType%2522%253A%2522UNKNOWN%2522%252C%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522id%2522%253A%2522ROOT_LAYOUT%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522UNKNOWN%2522%252C%2522direction%2522%253A%2522vertical%2522%252C%2522id%2522%253A%2522clx3jngyy00063b6k3i62ybf6%2522%252C%2522sizes%2522%253A%255B100%252C0%255D%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522EDITOR%2522%252C%2522direction%2522%253A%2522horizontal%2522%252C%2522id%2522%253A%2522EDITOR%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL%2522%252C%2522contentType%2522%253A%2522EDITOR%2522%252C%2522id%2522%253A%2522clx3jngy
 
y00023b6kekqyayx6%2522%257D%255D%257D%252C%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522SHELLS%2522%252C%2522direction%2522%253A%2522horizontal%2522%252C%2522id%2522%253A%2522SHELLS%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL%2522%252C%2522contentType%2522%253A%2522SHELLS%2522%252C%2522id%2522%253A%2522clx3jngyy00033b6kyfou0mzo%2522%257D%255D%252C%2522sizes%2522%253A%255B100%255D%257D%255D%257D%252C%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522DEVTOOLS%2522%252C%2522direction%2522%253A%2522vertical%2522%252C%2522id%2522%253A%2522DEVTOOLS%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL%2522%252C%2522contentType%2522%253A%2522DEVTOOLS%2522%252C%2522id%2522%253A%2522clx3jngyy00053b6kr2937cd9%2522%257D%255D%252C%2522sizes%2522%253A%255B100%255D%257D%255D%252C%2522sizes%2522%253A%255B50%252C50%255D%257D%252C%2522tabbedPanels%2522%253A%257B%2522clx3jngyy00023b6kekqyayx6%25
 
22%253A%257B%2522tabs%2522%253A%255B%257B%2522id%2522%253A%2522clx3jngyy00013b6kq0a75yoy%2522%252C%2522mode%2522%253A%2522permanent%2522%252C%2522type%2522%253A%2522FILE%2522%252C%2522filepath%2522%253A%2522%252Fsrc%252Findex.js%2522%252C%2522state%2522%253A%2522IDLE%2522%252C%2522initialSelections%2522%253A%255B%257B%2522startLineNumber%2522%253A17%252C%2522startColumn%2522%253A13%252C%2522endLineNumber%2522%253A17%252C%2522endColumn%2522%253A13%257D%255D%257D%255D%252C%2522id%2522%253A%2522clx3jngyy00023b6kekqyayx6%2522%252C%2522activeTabId%2522%253A%2522clx3jngyy00013b6kq0a75yoy%2522%257D%252C%2522clx3jngyy00053b6kr2937cd9%2522%253A%257B%2522tabs%2522%253A%255B%257B%2522id%2522%253A%2522clx3jngyy00043b6km1pheoaq%2522%252C%2522mode%2522%253A%2522permanent%2522%252C%2522type%2522%253A%2522UNASSIGNED_PORT%2522%252C%2522port%2522%253A0%252C%2522path%2522%253A%2522%252F%2522%257D%255D%252C%2522id%2522%253A%2522clx3jngyy00053b6kr2937cd9%2522%252C%2522activeTabId%2522%253A%2522clx3jngyy
 
00043b6km1pheoaq%2522%257D%252C%2522clx3jngyy00033b6kyfou0mzo%2522%253A%257B%2522tabs%2522%253A%255B%255D%252C%2522id%2522%253A%2522clx3jngyy00033b6kyfou0mzo%2522%257D%257D%252C%2522showDevtools%2522%253Atrue%252C%2522showShells%2522%253Afalse%252C%2522showSidebar%2522%253Atrue%252C%2522sidebarPanelSize%2522%253A15%257D
   
   ### Steps to Reproduce
   
   Open the codesandbox and you will see the abnormal behavior. 
   
   ### Current Behavior
   
   https://github.com/apache/echarts/assets/37322570/c6a2b220-fba9-417e-b2a4-fa91274673cc;>
   
   Right two columns won't show second series' information(in green color). 
When I set the x axis range bigger like 0-10 or remove the range, the missing 
two green series come back. 
   
   
   
   ### Expected Behavior
   
   https://github.com/apache/echarts/assets/37322570/36f89660-813e-4795-b209-ec40f592df3b;>
   
   All five column should have two stack bars because there is no 0 in given 2 
series. 
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


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

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

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


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



Re: [I] Too Large Bundle size [echarts]

2024-06-06 Thread via GitHub


johannesjo commented on issue #11375:
URL: https://github.com/apache/echarts/issues/11375#issuecomment-2152302827

   The situation hasn't much improved as far as I am aware:
   https://bundlephobia.com/package/echarts@5.5.0


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

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

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


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



Re: [I] BUG! 刚才下了Echarts3.01还是有联动问题 曲线图 tooltip.trigger设定为axis,进行多图联动时随动的图表坐标轴指示器定位错误 [echarts]

2024-06-06 Thread via GitHub


Dylaneal commented on issue #2445:
URL: https://github.com/apache/echarts/issues/2445#issuecomment-2152285861

   求助,要如何解决这个问题呢
   


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

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

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


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



[I] show minimum value in bar chart [Feature] [echarts]

2024-06-06 Thread via GitHub


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

   ### What problem does this feature solve?
   
   when we have bar chart whit outlier data for example green : 1000 , and blue 
: 1 ,we have serious issue in stacked bar chart ,and bar chart just show green 
because is too long and doesn't show blue just show label 
   i don't need markPoint because i need to show integrated chart 
   
![image](https://github.com/apache/echarts/assets/45121837/a01a434c-2def-4dc2-99cb-982c916bad01)
   
![image](https://github.com/apache/echarts/assets/45121837/5d058fce-e9e7-474a-bba3-94d50fa0d5c5)
   
![image](https://github.com/apache/echarts/assets/45121837/d0c1f5cf-a0c8-4768-a963-e46cc35230ad)
   
![image](https://github.com/apache/echarts/assets/45121837/e8fd8f7f-15cf-4211-82ab-41b8130112f7)
   
   
   ### What does the proposed API look like?
   
   i think just like minBarWidth and minBarHeight we can have something like 
that to set default width or height and just set to minimum or very low values.
   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.apache.org

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


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



Re: [I] Export image of the charts using CORS resources [echarts]

2024-06-06 Thread via GitHub


AndreyPatseiko commented on issue #15117:
URL: https://github.com/apache/echarts/issues/15117#issuecomment-2151812287

   Any info about, when this feature will be available?


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

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

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


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



Re: [I] [Bug] 横向柱状图想要实现 label 最后测对齐 [echarts]

2024-06-06 Thread via GitHub


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

   @guoliuqing123 It seems you are not using English, I've helped translate the 
content automatically. To make your issue understood by more people and get 
helped, we'd like to suggest using English next time. 珞
   TRANSLATED
   
   **TITLE**
   
   [Bug] Horizontal column chart wants to achieve final label alignment
   


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

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

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


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



[I] [Bug] 横向柱状图想要实现 label 最后测对齐 [echarts]

2024-06-06 Thread via GitHub


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

   ### Version
   
   无
   
   ### Link to Minimal Reproduction
   
   无
   
   ### Steps to Reproduce
   
   const data = [
   [
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": null,
   "type": "education",
   "name": "硕士",
   "value": 138,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "color": "#7591c8"
   }
   },
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": null,
   "type": "education",
   "name": "本科",
   "value": 549,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "color": "#60d8ac"
   }
   },
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": null,
   "type": "education",
   "name": "专科",
   "value": 131,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "color": "#64a7eb"
   }
   },
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": null,
   "type": "education",
   "name": "其他",
   "value": 73,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "color": "#aa"
   }
   }
   ],
   [
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": 0.86,
   "type": "compile",
   "name": "空管在编",
   "value": 364,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "color": "#7591c8"
   }
   },
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": 0.12,
   "type": "compile",
   "name": "合同",
   "value": 50,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "color": "#60d8ac"
   }
   },
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": 0.03,
   "type": "compile",
   "name": "劳务派遣",
   "value": 11,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "color": "#64a7eb"
   }
   }
   ],
   [
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": 0.81,
   "type": "sex",
   "name": "男",
   "value": 858,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "borderWidth": 2,
   "color": "#7591c8"
   }
   },
   {
   "number": null,
   "avgAge": null,
   "license": null,
   "proportion": 0.19,
   "type": "sex",
   "name": "女",
   "value": 202,
   "countValue": null,
   "eduCountList": null,
   "omDeptId": null,
   "omOfficeId": null,
   "omManageUnitId": null,
   "itemStyle": {
   "borderWidth": 2,
   "color": "#60d8ac"
   }
   }
   ]
   ]
   option = {
 tooltip: {
 },

Re: [I] [Bug] parallel dispatchAction showTip not work! [echarts]

2024-06-06 Thread via GitHub


Ovilia closed issue #18106: [Bug] parallel dispatchAction showTip not work!
URL: https://github.com/apache/echarts/issues/18106


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

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

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


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



Re: [I] [Bug] parallel dispatchAction showTip not work! [echarts]

2024-06-06 Thread via GitHub


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

   This is not a bug and it can neither be a feature, because when the 
`seriesIndex` and `dataIndex` is given, the matched data is multi-dimensional, 
like `[1,55,9,56,0.46,18,6,"良"]`. So it's logically unclear for the tooltip to 
be displayed at anywhere.


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

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

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


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



Re: [I] [Bug] Multi-series column charts extend beyond the x axis edge [echarts]

2024-06-06 Thread via GitHub


Shaq76 commented on issue #17152:
URL: https://github.com/apache/echarts/issues/17152#issuecomment-2151695965

   Hi, this is still an issue for me.


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

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

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


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



Re: [I] New Feature: axisLabel.autoRotate [echarts]

2024-06-06 Thread via GitHub


Carlo-C2 commented on issue #14996:
URL: https://github.com/apache/echarts/issues/14996#issuecomment-2151642533

   +1 for this feature


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

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

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


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



Re: [I] [Bug] Overflow of the pictorial elements when y-axis is set to a min. value other then 0. [echarts]

2024-06-06 Thread via GitHub


Ovilia closed issue #19173: [Bug] Overflow of the pictorial elements when 
y-axis is set to a min. value other then 0.
URL: https://github.com/apache/echarts/issues/19173


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

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

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


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



Re: [I] [Bug] When the bar chart label is too long, it will exceed the coordinate system range and cover the y-axis label [echarts]

2024-06-06 Thread via GitHub


liqiuqiui commented on issue #20002:
URL: https://github.com/apache/echarts/issues/20002#issuecomment-2151511843

   > have you tried a combination of label's _overflow_, _width_ and 
_lineHeight_? They are designed to help with long labels.
   
   In the case of dense x-axis, if overflow hiding is used, the number of 
displayed words will be too small


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

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

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


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



Re: [I] [Bug] When the bar chart label is too long, it will exceed the coordinate system range and cover the y-axis label [echarts]

2024-06-06 Thread via GitHub


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

   have you tried a combination of label's _overflow_, _width_ and 
_lineHeight_? They are designed to help with long labels.


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

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

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


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



Re: [I] [Bug] - markline ignores zlevel of the series it belongs to [echarts]

2024-06-06 Thread via GitHub


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

   duplicate of #19108


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

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

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


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



Re: [I] Geo3D overlay bar3D,the minimum value‘s bar height is 0 [echarts]

2024-06-06 Thread via GitHub


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

   Similar if not duplicate of 
[#447](https://github.com/ecomfe/echarts-gl/issues/447).
   Actually _minHeight_ might be a better workaround than a dummy bar.


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

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

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


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



Re: [I] [Bug] When user click on pie chart segment continously, app gets crash. [echarts]

2024-06-05 Thread via GitHub


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

   @indubansal786 Please provide a demo for the issue either with [Official 
Editor](https://echarts.apache.org/examples/editor.html), 
[CodePen](https://codepen.io/Ovilia/pen/dyYWXWM), 
[CodeSandbox](https://codesandbox.io/s/echarts-basic-example-template-mpfz1s) 
or [JSFiddle](https://jsfiddle.net/plainheart/e46ozpqj/7/).


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

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

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


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



Re: [PR] feat(scatter): jittering for category data [echarts]

2024-06-05 Thread via GitHub


xyy7260 commented on PR #19941:
URL: https://github.com/apache/echarts/pull/19941#issuecomment-2151275879

   @Ovilia  OK 
   


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

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

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


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



Re: [I] [Bug] Custom Toolbox Feature Not Working Properly [echarts]

2024-06-05 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Feature] Example of plotting images from file/url including zoom [echarts]

2024-06-05 Thread via GitHub


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

   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



Re: [I] pictorialBar象形图设置symbolRepeat时,symbol之间间隔不一致 [echarts]

2024-06-05 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Bug] Multi-series column charts extend beyond the x axis edge [echarts]

2024-06-05 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Bug] Stacked bar chart is broken when you use encode to get the data [echarts]

2024-06-05 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Feature] Example of plotting images from file/url including zoom [echarts]

2024-06-05 Thread via GitHub


github-actions[bot] closed issue #17134: [Feature] Example of plotting images 
from file/url including zoom 
URL: https://github.com/apache/echarts/issues/17134


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

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

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


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



[I] [Bug] When user click on pie chart segment continously, app gets crash. [echarts]

2024-06-05 Thread via GitHub


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

   ### Version
   
   5.5.0
   
   ### Link to Minimal Reproduction
   
   https://online.publuu.com/536191/1201517
   
   ### Steps to Reproduce
   
   Using @wuba/react-native-echarts, I need to show a tooltip when the user 
clicks on the chart table which I have created manually. So I used some actions 
 like showtip, hidetip, finished, select.
   
   ### Current Behavior
   
   The app crash, when a user continuously clicks on the pie chart segment.I am 
using dispatch action showtip. **Can't read property of getSeriesByIndex of 
null.**
  const dataModel = ecData.dataModel || 
ecModel.getSeriesByIndex(ecData.seriesIndex);
   
   
   ### Expected Behavior
   
   When a user clicks on the pie chart segment continuously, the app should not 
crash. In echarts.js class should handle **ecmodel** if it is null it should 
not call getSeriesByIndex()
  const dataModel = ecData.dataModel || 
ecModel.getSeriesByIndex(ecData.seriesIndex);
   
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


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

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

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


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



[I] [Feature] - Separate legend text align from the icon position [echarts]

2024-06-05 Thread via GitHub


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

   ### What problem does this feature solve?
   
   This is in anyway urgent, however it would be nice to have the possibility 
to align the legent text to a side without also changing the icon position.
   
   In my case, it was a design choice to have the icon shown in the left of the 
text and have the text align to the right. However, in the current 
implementation this is not possible because when the text align changes the 
icon goes to the side where the text is aligned to.
   
   ### What does the proposed API look like?
   
   Instead of having options.legend.align for both icon and text alignment i 
would suggest have something like options.legend.iconPosition (either 'left' or 
'right') and options.legend.align would just affect the text alignment.


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



[I] [Bug] - markline ignores zlevel of the series it belongs to [echarts]

2024-06-05 Thread via GitHub


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

   ### Version
   
   4.2.0
   
   ### Link to Minimal Reproduction
   
   
https://echarts.apache.org/examples/en/editor.html?code=PYBwLglsB2AEC8sDeAoWsAeBBDEDOAXMmurGAJ4gCmRA5AMYCGYVA5sAE7m0A0J6AE2aMiAbVoBZGL1i0AKgFcqM2gHUqAlXIAWClQDEOEFQGVmphdFoBdEgF8-6cjnxFUpMpRqyAbowA2SrT2jrB4VEZUhLCi_MQegsJiAIwArAAMPLAATADMmTnZACxZ2ckAHFnJualVRQDspQBs6dahHhTUdP4Q0MrtpABe_lQ-VP5EyXEOce4Jnd60PX28cejDo-NE2QPo9MD-nEQARBwax7uwQmAiMcn1tbD3j89VD28v708PbWuwALaMDgAawAMr1vHMEmFyP8AEYHIiZP7ofyMOFbeLQ0ggYB4CCQGB0PA3DhgVbY2AzSnLKgmCgjNwo0j7Q4cE5nAQXZnoBYnPAHCBcy4eADuQrA2km6WZ1Ox11usUp6ChyowdAqAFIZM5cNE0jLlVSRbBbNC7NMBqreV5uhCKQkNmMJrAALTJS6so6ycjjQ6ih0eBVibLZR6h8Nh0pRwqRuO_aGAkHgvpMyl4WEIl3ImnozHWhK4_GE6DE0nkk1y6G0-nkRlYyle9mwY6-_z-7lGvktgU9YU82DigSS6Wyk3BmIDgvQ9WyLU6lzRbLpQ3KqsJM0JC0ebemlB2ADcQA
   
   ### Steps to Reproduce
   
   1. Set up a chart with 3 series
   2. First series should be just data at the zlevel 1
   3. Second series is data plus a markline at the zlevel 2 (can be any value 
higher than 1)
   4. Third series is data plus a markline at the zlevel 0 (can be any value 
lower than 1)
   
   ### Current Behavior
   
   The second and third series's data is correctly placed either above or below 
the first according to their zlevels. However as can be observed in the link to 
minimal reproduction both marklines get placed below the first series, thus 
ignoring the zlevel.
   
   ### Expected Behavior
   
   The marklines should follow the behaviour of the data itself.
   
   ### Environment
   
   ```markdown
   - OS: macOs Sonoma Version 14.2 (23C64)
   - Browser: Google Chrome Version 125.0.6422.113 (Official Build) (arm64)
   - Framework: Angular v7
   ```
   
   
   ### Any additional comments?
   
   From what i was able to gather, all the canvas (corresponding to the 
different zlevels) are correctly placed however the markline is just drawn in 
the first layer regardless of zlevel.
   
   Additionally, the link to the minimal reproduction is from echarts 5.5 
however i'm having the same issue in my project using 4.2.


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

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

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


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



Re: [I] [Bug] Toolbox magic type feature doesn't indicate default chart state [echarts]

2024-06-05 Thread via GitHub


mietl commented on issue #16473:
URL: https://github.com/apache/echarts/issues/16473#issuecomment-2149355227

feature: {
   magicType: {
 show: true,
 type: ['line', 'bar'],
 iconStatus: { line: 'normal', bar: 'emphasis' }
   }
}

   You can set default indicate using the iconStatus bar: 'emphasis'


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

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

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


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



Re: [PR] feat(scatter): jittering for category data [echarts]

2024-06-05 Thread via GitHub


Ovilia commented on PR #19941:
URL: https://github.com/apache/echarts/pull/19941#issuecomment-2149208732

   > @Ovilia 没尝试过如何提前合并。 如果我要提前合并,在哪里查看你这个 fork
   
   Step 1: Clone the repository or update your local repository with the latest 
changes.
   
   git pull origin next
   Step 2: Switch to the base branch of the pull request.
   
   git checkout next
   Step 3: Merge the head branch into the base branch.
   
   git merge feat-scatter


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

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

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


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



[I] [Bug] When the bar chart label is too long, it will exceed the coordinate system range and cover the y-axis label [echarts]

2024-06-05 Thread via GitHub


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

   ### Version
   
   5.5.0
   
   ### Link to Minimal Reproduction
   
   
https://echarts.apache.org/examples/zh/editor.html?c=line-simple=PYBwLglsB2AEC8sDeAoWsDmAnCATAXMrGKIQEwAsANLADYCmAZmIRWQHQAcNOGAFi1hkAjOwBsNAEbAwJALaEAnGRoBjGGACGEaABlNk-rUKNNtAM71YAXyppYADwCCDiOcIBte-lTo_saE05ekIAclC7f3RzCAZoQVMLekiosABPEBDYUNVNMHoMYCw0iO8_HQA3eixLEzNLFP8QYBjIGDDpWWA5UqjYXDzNTzL_JFgKswBXLNDAbbVAXd1AQHdQm0aosYnaabDASO1AXv1l1ZG_DamZwGabQHRlQ9tjn3GzsPPAdWUbtdGHrZnARx1AHDk3u5ETbbbKAfz1AP6RK1ufXuwJmgAbTQBhroAXv0AfCqAFB1AFeBgG6bQBcylD3idPiDQqD_gTAacvmFAGp2rwpMKBj2ygH0bcEAxlUknfdkMmFcmYswDzQRz-cSZoBEuXpR054rCgHjPQBfeqK-gKwoAMV0AwQEq9Zy7KAVljAHu6Oo-cNp1z5qr1oUAqmm8mVis3ZcGAedCcfiHVanaFAIt5gEz8lkmonewCatoHLbrvYBQxUAmSGAE-V3RHTczQoAldMA7rZB2EpwC98YBA7SzTOp2TzgHhNQB7aoB500TnsjKfT0uhjpTgEgVQDp5oW1dlALOJgDC9QBAekngynAJSagFJbQe15PF0KAKDl05Om16U5dADVyi-OAF1CeY-MAAO6EMBYaaEzSucy6HRZMYwABa1WAR5PyTo14AyukGIQxupaEUwgAYnoMQQJAqEp1gc83AAFQgVQAGsf0BHR8iwTZCAABkJdAdBiXAskSBpATiDAwD4QgAFYcKg2gIAwaAAHUIHI_RDGMWAiOSEiPy_G9YD_ADsmA0DRKhY4lz8YBGEYSxBGw45oMvAwjGQxldwPZ9T0BMx6OgMJeAEXoYS
 
qLBIFyWgnDohiwjkPBcAYYy-jo6B6AACXoeiBFYCRATkTQsAwHRCGEFRAT4PB6AAeVM2hNBAOokho1Dqgw7JNEmEgnKiQSsCAsRhAAdjITgyGy_xGA0d8IAALyyUKaMqrBVHod8933ABZHQOvPNjVOIF8aKwGQ8iyChKIksprHsbd7DSFw3DU8oCGyHqdHfaoIHocwFvMbKNMPAbtP8dJMjCOFsuaVooH07IGGYbLKmqWpOPqbj_GwPAAEloAIhwsLWcwQDosAr1cn9YAOrTXxc1q-Ih3KgLAsSbFrQJgl0YBcjaW7Qjs3AHPobL0foABxeLWA4bgyhJmD6AcMBPzSb9kGORHhIK4rSvKziqtq-qwr6XSbOyFr4mqHnTPMswrL02z7Mcqa1iUuDEIh0jyKw2slL6jjfCifzAuC2Bqb6Sr4mquqQsFnLgH_PKOaKkqysJJqWrag8uugHqHF1xLLCVsodevCGodepLYHvR9_asab0CbSwcG24ZRmOEmwkAN7TADpVQB3uR506ZkkAKeYGLQU_5QF0CdRQxBK9hqMr2AWPoOQmZZsZpCwAisAAYTtoTQkkOLEIiWBO-75jcE12BMMg_w_0mORoAAEUGH6_qwwFJNTxkq-ZThKMosR65o3D8lb-GiHH6o-_tjph4Q0fr6wSfp9n7fba2JfV60df6c3xkH8fCNydJwCgABmTgJ9G7Nwvszfiz9b4DyHpoEeUgigTzwG_OefgF7fzXr9f-M8t40X1oyJ0hUD4N13k3c-bcEEYJvv3B2g8H5P0YS_LBFEZ44PQHgleBCN7EMAaQkBzIxBgPAafWhLd6EQ0Qcw--qDH7oK7tUV-3D37SP4T_TQf9_rCJhEA1mNCnSUUKhY6RsC5FXw4UglhKC0Fjw4RorWxi-F20XgI3-hCDGYRIZSMRxZKIlUUNAmh1jL4dzsYo7IjiVHOLUZwqemjeECU8fgnxQj_EiMCaY5kITCqiGobvSJ8D5ExLv
 
nEthqjMEpLcdojJ3i9G-IAUY0R-TizjXAcIKxdComJO7vYpRTjn6uJ4e49JX9mn6LaX0YxZCTLMgoBQMQhU-myIGQoqprDlHsKSeMrRjcdGCKITk9peTd5OggYVSi4TSn9PKbYpJwzql7NqeorhDTjlNN0bMwx8yOlXOZOAsQYgFIRMee3QZTCdnxP2XU7BkyTlZLOQEzkQSQSgooFAkpjIynQu2cgmpMLklIsadMv5rSAVRAWZirI4DIFSJgVChhLzYm7NGS4r5EyKVeKpdk9FFdOlYvAZRagLLNlPOieyuFJKxk8qOTQlFLTBW5IxSKhlwhwX3PxayipsriXvNJYctJKr_nnMBZc8hILMKMt1TCAlbKhkcvhR8slqTkW_NOX4oVqp6XkBrusyVcDCWVKNVyg5iqzXetRb69VwrgXFjIIVCRGzQ3OthRGhJCr6m8p-ZSn1czaVAptcm8Vdy8WOv1c8l1crjW5vJQW_lRaaX-DpZq8gZBD4Or6E6g1dbs0Is-XmpVu9zXUstSW61Szk3CEohCh5Uqw2GocfK7lo6Y2FrjcW9tpbZ0gjIJhNg6abEysHWuhtG6m3KtjaqtFCb_WdtgMIUqVa-01vPVmy9kbEWer5Zk-98aLkaqTSCYQOLK2nq2eGn9Obr3_ubYBi1fr1gBpfWQSBvaoj9trd-kZ8Go2bq9duoDu6_AdrAwLIq0HpWkteZywjf7vm3tIyhx9aHn3CCKphbD_hcNft7q69dRGb3jrvexkDiay0gkUKmvj5RP30eE1e0TiHWMtp3W2ij-6-hOjEJA2jK6L0EeHR6lj4m2OTtQzvKjVEcVGczUJ-tv6R1icZBOtVRityEhbiAPgmgYjuCIHFdiod2rQ1Rh_UL_VFn-DDseY6MJzaM35tbGi7NQiAU5s7Hm6B8gMwAEKwbCPuCK-Q8vEHpmAYramAaAiuixG6YQSAgEq01fyshqgAAo4QAEokBYHoGASYWA4BwnYHCA
 
A1KEQAMP9yCKPQQAZAQraWwtoboQ47TucipWg-g0jAEyhDCKBEYrVDiglI6sdCTOAvBawk807uTsJAJrb8cZopFLpoO8wBujhc0uHBosA-CeX4IIcB2FnFdAULACQkck7xDCHuHANUNBmD5CQO2kBLuLIS4NMox56IYGqGEJS2UlIAAVgApQdmMTQ0AICdea4D67QcQCZF-jBYAxXcBpGhmsIbhCsAdWAARJHYA5C0EupoAmOgMBtKbAwYnv0lr5YyDMcwqhhq0Cl4DIw9BVD5FwCLsX2Q5CTFoNjxyawvueFCNnPOs1_BFC2oj7IyPapo91wT6rZ62Ycuy07bmrs-ZWwwyH-IAAxIIsQ-fZHMPT8wABaROEBGA81hh5LyghhDMr6CD7PIVwGByaDL3AcvPDcBfWIJ3imW7jOEIus-Lcs9g5Ck32AIBNDE6-uoaAlt6oStL8TwrmUSDQC-ufcml289-C7yPsfMBp8hV8v4To8h6v-HuoIHI9BxZYFCPYJs7MvD-Cy5zTQ9BJDZSy5oYQkgKCMEUDfwC5jJCKHAmsLLihDBiEYIVF_SiAwXAQqZ_L_QCO_K_TQMAsoLLRgcBSQXASiYQF_RgQwTCGuVA3ARQTCIA1Ag3RQRQVQVA8BQqSBYg8AtAgwVBQ_dATcFAawAAbiAA
   
   ### Steps to Reproduce
   
   [click 
this](https://echarts.apache.org/examples/zh/editor.html?c=line-simple=PYBwLglsB2AEC8sDeAoWsDmAnCATAXMrGKIQEwAsANLADYCmAZmIRWQHQAcNOGAFi1hkAjOwBsNAEbAwJALaEAnGRoBjGGACGEaABlNk-rUKNNtAM71YAXyppYADwCCDiOcIBte-lTo_saE05ekIAclC7f3RzCAZoQVMLekiosABPEBDYUNVNMHoMYCw0iO8_HQA3eixLEzNLFP8QYBjIGDDpWWA5UqjYXDzNTzL_JFgKswBXLNDAbbVAXd1AQHdQm0aosYnaabDASO1AXv1l1ZG_DamZwGabQHRlQ9tjn3GzsPPAdWUbtdGHrZnARx1AHDk3u5ETbbbKAfz1AP6RK1ufXuwJmgAbTQBhroAXv0AfCqAFB1AFeBgG6bQBcylD3idPiDQqD_gTAacvmFAGp2rwpMKBj2ygH0bcEAxlUknfdkMmFcmYswDzQRz-cSZoBEuXpR054rCgHjPQBfeqK-gKwoAMV0AwQEq9Zy7KAVljAHu6Oo-cNp1z5qr1oUAqmm8mVis3ZcGAedCcfiHVanaFAIt5gEz8lkmonewCatoHLbrvYBQxUAmSGAE-V3RHTczQoAldMA7rZB2EpwC98YBA7SzTOp2TzgHhNQB7aoB500TnsjKfT0uhjpTgEgVQDp5oW1dlALOJgDC9QBAekngynAJSagFJbQe15PF0KAKDl05Om16U5dADVyi-OAF1CeY-MAAO6EMBYaaEzSucy6HRZMYwABa1WAR5PyTo14AyukGIQxupaEUwgAYnoMQQJAqEp1gc83AAFQgVQAGsf0BHR8iwTZCAABkJdAdBiXAskSBpATiDAwD4QgAFYcKg2gIAwaAAHUIHI_RDGMWAiOSEiPy_G9YD_ADsmA0DRKhY4lz8YBGEYSxBGw45oMvAwjGQxldwPZ9T0BM
 

Re: [PR] feat(scatter): jittering for category data [echarts]

2024-06-04 Thread via GitHub


xyy7260 commented on PR #19941:
URL: https://github.com/apache/echarts/pull/19941#issuecomment-2148780619

   @Ovilia没尝试过如何提前合并。 如果我要提前合并,在哪里查看你这个 fork 


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

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

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


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



[I] Geo3D overlay bar3D,the minimum value‘s bar height is 0 [echarts]

2024-06-04 Thread via GitHub


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

   ### Version
   
   5.3.0
   
   ### Link to Minimal Reproduction
   
   https://jsfiddle.net/gaojie/zr5c9enp/1/#=p5nFt8C7qU
   
   ### Steps to Reproduce
   
   1.When I use Geo3D overlay bar3D,I set three value,   { name: '吉林', value: 
10 }, { name: '贵州', value: 13 }, { name: '云南', value: 13 },
   if I set series minHeight=1,the minimum value jilin's bar height is 1,Out of 
proportion to the height of other bars,if I don't set  series minHeight,the 
minimum value jilin's bar height is 0,and Out of proportion to the height of 
other bars too
   
   ### Current Behavior
   
   
![11](https://github.com/apache/echarts/assets/171541808/81aff49c-b0bc-4fef-8f9c-8d8a52c3701e)
   
   
   ### Expected Behavior
   
   Please help solve the problem
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


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

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

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


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



Re: [I] [Feature] Please add options to 3DGrid.{x|y|z}Axis3D.axisLabel. [echarts]

2024-06-04 Thread via GitHub


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

   I think Axis3D.axisLabel has 
[rotate](https://github.com/ecomfe/echarts-gl/blob/master/src/component/grid3D/Grid3DModel.js#L80),
 but it gets overwritten by [Grid3DView](
   
https://github.com/ecomfe/echarts-gl/blob/master/src/component/grid3D/Grid3DView.js#L308),
 it's to keep the labels readable (not upside-down).  
   But agree, your proposed API ```axisLabel.autoRotate:{boolean}``` makes 
sense in certain scenarios.


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

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

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


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



Re: [I] [Feature] 希望Tooltip的valueformatter能够判断是哪个值 [echarts]

2024-06-04 Thread via GitHub


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

   _dataIndex_ has been added already, but is not documented yet. See duplicate 
#18997 with fix.
   So this is working: ```valueFormatter: function (value, dataIndex)```
    please close issue if problem solved.


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

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

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


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



Re: [I] [Bug] nameMap does not work with svg while using registerMap,geoJson works normal [echarts]

2024-06-04 Thread via GitHub


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

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


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

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

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


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



Re: [I] [Feature] 希望Tooltip的valueformatter能够判断是哪个值 [echarts]

2024-06-04 Thread via GitHub


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

   @nyssance It seems you are not using English, I've helped translate the 
content automatically. To make your issue understood by more people and get 
helped, we'd like to suggest using English next time. 珞
   TRANSLATED
   
   **TITLE**
   
   [Feature] I hope the valueformatter of Tooltip can determine which value it 
is.
   
   **BODY**
   
   ### What problem does this feature solve?
   
   Suppose I display some information on the tooltip, then the price is not a 
percent sign, the amplitude needs a percent sign, and the current provision is 
very frustrating. If I have few entries, I can write my own formatter, I have a 
lot of entries now, but I can't customize it for one or the other. In fact, 
there are more than a dozen items of data in a series, and tooltip displays the 
remaining information outside the xy axis, which is the role of tooltip.
   In addition, the existing valueformatter, the number formatting will add a 
comma, but I value it myself, and this comma is gone, which is equivalent to 
completely redoing it myself. It's better to write the formatter yourself, in 
fact, it's mainly an alignment function.
   Or just add a global percent type solution, which indicates that this item 
is in the form of a percent sign, whether it is the y axis or the tooltip 
automatically displays the percent sign.
   
   ### What does the proposed API look like?
   
   (value: number | string, dataIndex: number, params) => string
   


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

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

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


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



[I] [Feature] 希望Tooltip的valueformatter能够判断是哪个值 [echarts]

2024-06-04 Thread via GitHub


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

   ### What problem does this feature solve?
   
   
假定我在tooltip上显示一些信息,那么价格是不要百分号的,幅度是需要百分号的,现在提供的很鸡肋。如果我条目少,我自己的写formatter就好了,我现在条目很多,但是又不能针对某一条去定制。现有的只考虑了不同系列的情况,某认一个系列就一个value.事实上,某个系列里面有十几项数据,xy轴之外,tooltip显示剩余的信息,才是tooltip的作用。
   
另外现有的valueformatter,数字格式化会加逗号,但是我自己value一下,这个逗号又没了,等于完全自己重做。还不如自己去写formatter,其实主要就是个对齐的功能。
   或者就是加一个全局的百分号类型的解决方案,标注了这项是百分号形式,不管是y轴还是tooltip自动显示百分号。
   
   ### What does the proposed API look like?
   
   (value: number | string, dataIndex: number, params) => string
   


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



[I] [Feature] Please add options to 3DGrid.{x|y|z}Axis3D.axisLabel. [echarts]

2024-06-04 Thread via GitHub


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

   ### What problem does this feature solve?
   
   If you need to list a lot of data on one axis,
   There is an issue with overlapping names.
   https://github.com/apache/echarts/assets/10387955/7ff1dd0e-5d82-40a2-a340-94ea8d153633;>
   
   Also, when rotate the chart, the labels invade the chart area.
   I can adjust the margin of the label, but since it is fixed, too much margin 
is given when zoomed in. (Please refer to the date axis.)
   https://github.com/apache/echarts/assets/10387955/c602ca8c-df90-4599-85ea-76b949a52180;>
   
   
   ### What does the proposed API look like?
   
   3DGrid.{x|y|z}Axis3D.axisLabel.autoRotate : {boolean}, // The axis rotates 
as the camera rotates.
   3DGrid.{x|y|z}Axis3D.axisLabel.rotate :{deg}, //Default axisLabel Deg
   3DGrid.{x|y|z}Axis3D.axisLabel.anchor : 
{left|right|center|top|bottom|top-left|top-right|top-center }


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



[I] [Bug] Tooltip coordinate markers created by "makeStyleCoord" are not disposed [echarts]

2024-06-04 Thread via GitHub


csisy-bt4w opened a new issue, #19998:
URL: https://github.com/apache/echarts/issues/19998

   ### Version
   
   5.5.0
   
   ### Link to Minimal Reproduction
   
   
https://echarts.apache.org/examples/en/editor.html?code=PYBwLglsB2AEC8sDeAoWsAeBBDEDOAXMmurGAJ4gCmRA5AMYCGYVA5sAE7m0A0J6AE2aMiAbVoBZGL1i0AKgFcqM2gHUqAlXIAWClQDEOEFQGVmphdFoBdEgF8-6cjnxFUpMpRqyAbowA2SrT2jrB4VEZUhLCi_MQegsJiAIwArAAMPLAATADMmTnZACxZ2ckAHFnJualVRQDspQBs6dahHhTUdP4Q0MpxdiRtJGDAwP6QIG5xjCDU0AJywHQARsAC3KGDdgDcQA
   
   ### Steps to Reproduce
   
   1. Set the `tooltip` to append to the `body`
   2. The tooltip will create these "marker points" inside the `makeStyleCoord` 
function
   3. These elements will be appended to the body
   4. Dispose the chart
   
   ### Current Behavior
   
   When the chart is disposed (and thus the tooltip is disposed), these marker 
elements are not removed from the DOM. This is kind of unexpected in a SPA, 
where the whole component is destroyed.
   
![image](https://github.com/apache/echarts/assets/147164603/d5f7497b-8751-43c8-925e-9e7d2bd8101a)
   
   ### Expected Behavior
   
   These elements should not remain cached when all charts (we currently have a 
single one) are disposed.
   
   ### Environment
   
   ```markdown
   - OS: Windows 11
   - Browser: Chrome 125.0.6422.114
   - Framework: Angular@17
   ```
   
   
   ### Any additional comments?
   
   It's not that big of a deal since these are hidden, 0x0 elements, but still, 
unnecessary 4 elements in the 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.apache.org

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


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



Re: [I] [Bug] 图例的tooltip存在xss攻击 [echarts]

2024-06-04 Thread via GitHub


lixm9881 commented on issue #19997:
URL: https://github.com/apache/echarts/issues/19997#issuecomment-2146936251

   element中可以看到图例被解析成html
   https://github.com/apache/echarts/assets/66252087/9bf56c5e-3636-4f5e-bf3d-fc28cb8f9af5;>
   


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

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

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


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



Re: [I] [Bug] 图例的tooltip存在xss攻击 [echarts]

2024-06-04 Thread via GitHub


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

   @lixm9881 It seems you are not using English, I've helped translate the 
content automatically. To make your issue understood by more people and get 
helped, we'd like to suggest using English next time. 珞
   TRANSLATED
   
   **TITLE**
   
   [Bug] There is an XSS attack on the tooltip of the legend
   


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

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

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


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



[I] [Bug] 图例的tooltip存在xss攻击 [echarts]

2024-06-04 Thread via GitHub


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

   ### Version
   
   5.3.2
   
   ### Link to Minimal Reproduction
   
   https://codepen.io/lixm9881/pen/vYwgREo
   
   ### Steps to Reproduce
   
   图例的数据包含html标签时,鼠标移至图例上内容被解析成html,如截图所示:
   
![image](https://github.com/apache/echarts/assets/66252087/1ebe3f38-596b-405b-bae8-19f2bca911a7)
   
![image](https://github.com/apache/echarts/assets/66252087/a80b7545-1052-476d-a7c7-e9a4d47b1ed6)
   
   ### Current Behavior
   
   图例数据被解析成html
   
   ### Expected Behavior
   
   期望可正常展示图例数据,不被解析
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   附已被关闭的issue链接:https://github.com/apache/echarts/issues/19988


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

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

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


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



Re: [I] [Bug] legend.tooltip xss问题 [echarts]

2024-06-04 Thread via GitHub


lixm9881 commented on issue #19988:
URL: https://github.com/apache/echarts/issues/19988#issuecomment-2146885054

   > 请详细描述下问题
   
   图例的数据中包含html标签时,鼠标滑过图例显示的内容被解析成html了。如截图中所示:
   https://github.com/apache/echarts/assets/66252087/e9793e9d-994e-422c-a371-2556d120556a;>
   https://github.com/apache/echarts/assets/66252087/8840fa1b-15d3-427d-9f0a-a4f61d74df96;>
   


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

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

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


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



Re: [I] [Feature] series-line.areaStyle. shadowColor 如何使用 [echarts]

2024-06-03 Thread via GitHub


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

   @feilongjump It seems you are not using English, I've helped translate the 
content automatically. To make your issue understood by more people and get 
helped, we'd like to suggest using English next time. 珞
   TRANSLATED
   
   **TITLE**
   
   [Feature] series-line.areaStyle. shadowColor How to use
   


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

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

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


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



[I] [Feature] series-line.areaStyle. shadowColor 如何使用 [echarts]

2024-06-03 Thread via GitHub


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

   ### What problem does this feature solve?
   
   目前 
[series-line.](https://echarts.apache.org/zh/option.html#series-line)[areaStyle.](https://echarts.apache.org/zh/option.html#series-line.areaStyle)
 
[shadowColor](https://echarts.apache.org/zh/option.html#series-line.areaStyle.shadowColor)
 好像仅支持【RGB、RGBA、十六进制格式】这三种
   
   ### What does the proposed API look like?
   
   在文档中 `shadowColor` 说明:支持的颜色同 `color`,但是 `color` 
支持渐变色或者纹理填充,可我实际使用却是一个错误的使用方式,希望以下代码能执行
   ```
   option = {
 xAxis: {
   type: 'category',
   data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
 },
 yAxis: {
   type: 'value'
 },
 series: [
   {
 data: [320, 932, 601, 934, 1090, 1500, 1320],
 type: 'line',
 smooth: true,
 itemStyle: {
   opacity: 0
 },
 lineStyle: {
   color: {
 type: 'linear',
 x: 0,
 y: 1,
 x2: 1,
 y2: 0,
 colorStops: [
   {
 offset: 0,
 color: '#f9a8d4' // 0% 处的颜色
   },
   {
 offset: 1,
 color: '#22d3ee' // 100% 处的颜色
   }
 ],
 global: false // 缺省为 false
   },
   width: 3,
   cap: 'round',
   shadowBlur: 30,
   shadowOffsetY: 5,
   shadowColor: {
 type: 'linear',
 x: 0,
 y: 1,
 x2: 1,
 y2: 0,
 colorStops: [
   {
 offset: 0,
 color: '#f9a8d4', // 0% 处的颜色
   },
   {
 offset: 1,
 color: '#22d3ee', // 100% 处的颜色
   },
 ],
 global: false, // 缺省为 false
   },
 }
   }
 ]
   };
   ```


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

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

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


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



Re: [I] ECharts 关系图设置legendHoverLink:true,图例不能联动节点高亮 [echarts]

2024-06-03 Thread via GitHub


eahom2 commented on issue #11663:
URL: https://github.com/apache/echarts/issues/11663#issuecomment-2146404901

   Hi @Ovilia, 当lineChart,series数组长度大于45时, `legendHoverLink:true` 
会失效!我的echarts版本为5.5.0


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

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

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


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



Re: [I] [Bug] legend.tooltip xss问题 [echarts]

2024-06-03 Thread via GitHub


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

   This issue is closed due to not being active. Please feel free to open it 
again (for the author) or create a new one and reference this (for others) if 
you have further questions.


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

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

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


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



Re: [I] [Bug] legend.tooltip xss问题 [echarts]

2024-06-03 Thread via GitHub


echarts-bot[bot] closed issue #19988: [Bug] legend.tooltip xss问题
URL: https://github.com/apache/echarts/issues/19988


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

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

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


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



Re: [PR] changed weakFilter logic, so line charts will not disappear, while zoom [echarts]

2024-06-03 Thread via GitHub


Skuperday commented on PR #18202:
URL: https://github.com/apache/echarts/pull/18202#issuecomment-2144885324

   @Ovilia Can you review my changes?


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

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

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


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



Re: [I] [Feature] Violin Series [echarts]

2024-06-03 Thread via GitHub


XijueYZ commented on issue #18878:
URL: https://github.com/apache/echarts/issues/18878#issuecomment-2144713911

   Is there an estimated launch time for this feature? @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



Re: [I] [Feature] axisLabel interval 的 return 能加上 'auto' 嗎 [echarts]

2024-06-03 Thread via GitHub


mukiwu closed issue #18261: [Feature] axisLabel interval 的 return 能加上 'auto' 嗎
URL: https://github.com/apache/echarts/issues/18261


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

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

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


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



Re: [I] [Bug] yAxisIndex 不是 0 時,使用 alignTicks,縮放時 Y 軸資料會被切掉 [echarts]

2024-06-03 Thread via GitHub


mukiwu closed issue #18776: [Bug] yAxisIndex 不是 0 時,使用 alignTicks,縮放時 Y 軸資料會被切掉
URL: https://github.com/apache/echarts/issues/18776


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

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

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


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



Re: [I] [Discussion] Apache ECharts 6.0 Feature Discussion [echarts]

2024-06-03 Thread via GitHub


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

   > I hope this feature can be added:[ 
#18157](https://github.com/apache/echarts/issues/18157),thanks!
   
   I saw that you made some attempts to implement this feature. How about 
making it to be a pull request?


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

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

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


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



Re: [I] [Feature] Can I customize the color blending effect? [echarts]

2024-06-03 Thread via GitHub


nielskrijger commented on issue #19961:
URL: https://github.com/apache/echarts/issues/19961#issuecomment-2144577952

   Did you manage to figure out a workaround?


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

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

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


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



Re: [PR] feat: matrix coordinate [echarts]

2024-06-03 Thread via GitHub


Ovilia commented on code in PR #19807:
URL: https://github.com/apache/echarts/pull/19807#discussion_r1623906750


##
src/component/matrix/MatrixView.ts:
##
@@ -0,0 +1,172 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one
+* or more contributor license agreements.  See the NOTICE file
+* distributed with this work for additional information
+* regarding copyright ownership.  The ASF licenses this file
+* to you under the Apache License, Version 2.0 (the
+* "License"); you may not use this file except in compliance
+* with the License.  You may obtain a copy of the License at
+*
+*   http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing,
+* software distributed under the License is distributed on an
+* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+* KIND, either express or implied.  See the License for the
+* specific language governing permissions and limitations
+* under the License.
+*/
+
+import MatrixModel from '../../coord/matrix/MatrixModel';
+import ExtensionAPI from '../../core/ExtensionAPI';
+import ComponentView from '../../view/Component';
+import { createTextStyle } from '../../label/labelStyle';
+import GlobalModel from '../../model/Global';
+import * as graphic from '../../util/graphic';
+
+class MatrixView extends ComponentView {
+
+static type = 'matrix';
+type = MatrixView.type;
+
+render(matrixModel: MatrixModel, ecModel: GlobalModel, api: ExtensionAPI) {
+
+const group = this.group;
+
+group.removeAll();
+
+this._renderTable(matrixModel);
+}
+
+protected _renderTable(matrixModel: MatrixModel) {
+const coordSys = matrixModel.coordinateSystem;
+const xDim = coordSys.getDim('x');
+const yDim = coordSys.getDim('y');
+const xModel = matrixModel.getModel('x');
+const yModel = matrixModel.getModel('y');
+const xLabelModel = xModel.getModel('label');
+const yLabelModel = yModel.getModel('label');
+const xItemStyle = xModel.getModel('itemStyle').getItemStyle();
+const yItemStyle = yModel.getModel('itemStyle').getItemStyle();
+
+const rect = coordSys.getRect();
+const xLeavesCnt = xDim.getLeavesCount();
+const yLeavesCnt = yDim.getLeavesCount();
+const xCells = xDim.getCells();
+const xHeight = xDim.getHeight();
+const yCells = yDim.getCells();
+const yHeight = yDim.getHeight();
+const cellWidth = rect.width / (xLeavesCnt + yHeight);
+const cellHeight = rect.height / (yLeavesCnt + xHeight);
+
+const xLeft = rect.x + cellWidth * yHeight;
+for (let i = 0; i < xCells.length; i++) {
+const cell = xCells[i];
+const width = cellWidth * cell.colSpan;
+const height = cellHeight * cell.rowSpan;
+const left = xLeft + cellWidth * cell.colId;
+const top = rect.y + cellHeight * cell.rowId;
+
+this.group.add(new graphic.Rect({
+shape: {
+x: left,
+y: top,
+width: width,
+height: height
+},
+style: xItemStyle
+}));
+if (xLabelModel.get('show')) {
+this.group.add(new graphic.Text({
+style: createTextStyle(xLabelModel, {
+text: cell.value,
+x: left + width / 2,
+y: top + height / 2,
+verticalAlign: 'middle',
+align: 'center'
+})
+}));
+}
+}
+
+const yTop = rect.y + cellHeight * xHeight;
+for (let i = 0; i < yCells.length; i++) {
+const cell = yCells[i];
+const width = cellWidth * cell.rowSpan;
+const height = cellHeight * cell.colSpan;
+const left = rect.x + cellWidth * cell.rowId;
+const top = yTop + cellHeight * cell.colId;
+
+this.group.add(new graphic.Rect({
+shape: {
+x: left,
+y: top,
+width: width,
+height: height
+},
+style: yItemStyle
+}));
+if (yLabelModel.get('show')) {
+this.group.add(new graphic.Text({
+style: createTextStyle(yLabelModel, {
+text: cell.value,
+x: left + width / 2,
+y: top + height / 2,
+verticalAlign: 'middle',
+align: 'center'
+})
+}));
+}
+}
+
+// Inner cells
+const innerBackgroundStyle = matrixModel
+.getModel('innerBackgroundStyle')
+.getItemStyle();
+for (let i = 

Re: [I] [Bug] When I set hideOverlap:true, if I click on the legend manually, some labels will not be displayed. [echarts]

2024-06-02 Thread via GitHub


Lazydd commented on issue #19985:
URL: https://github.com/apache/echarts/issues/19985#issuecomment-2144161607

   @helgasoft


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

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

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


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



Re: [I] [Bug] 使用echarts5+版本,更新options,获取data,然后开启动画,动画会明显变慢,而且当我快速拖动datazoom,会出现报错 [echarts]

2024-06-02 Thread via GitHub


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

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


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

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

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


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



Re: [I] WebGL: CONTEXT_LOST_WEBGL: loseContext: context lost error message in chrome browser [echarts]

2024-06-02 Thread via GitHub


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

   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



Re: [I] [Feature] Big data scatter charts can still be interoperated [echarts]

2024-06-02 Thread via GitHub


github-actions[bot] closed issue #17127: [Feature] Big data scatter charts can 
still be interoperated
URL: https://github.com/apache/echarts/issues/17127


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

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

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


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



Re: [I] [Bug] Pie chart: active area of callout tooltip is calculated wrongly when setting a label width [echarts]

2024-06-02 Thread via GitHub


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

   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



Re: [I] [Feature] Big data scatter charts can still be interoperated [echarts]

2024-06-02 Thread via GitHub


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

   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



Re: [I] [Bug] visualMap.dimension should work with dimension name and not just the dimension number [echarts]

2024-06-02 Thread via GitHub


github-actions[bot] closed issue #16594: [Bug] visualMap.dimension should work 
with dimension name and not just the dimension number
URL: https://github.com/apache/echarts/issues/16594


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

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

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


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



Re: [I] [Bug] Pie chart: active area of callout tooltip is calculated wrongly when setting a label width [echarts]

2024-06-02 Thread via GitHub


github-actions[bot] closed issue #17107: [Bug] Pie chart: active area of 
callout tooltip is calculated wrongly when setting a label width
URL: https://github.com/apache/echarts/issues/17107


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

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

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


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



Re: [I] 在graph关系图中,文字无法缩放。鼠标移入节点的鼠标样式无法更改。 [echarts]

2024-06-02 Thread via GitHub


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

   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



Re: [I] WebGL: CONTEXT_LOST_WEBGL: loseContext: context lost error message in chrome browser [echarts]

2024-06-02 Thread via GitHub


github-actions[bot] closed issue #17123: WebGL: CONTEXT_LOST_WEBGL: 
loseContext: context lost error message in chrome browser
URL: https://github.com/apache/echarts/issues/17123


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

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

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


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



Re: [I] 在graph关系图中,文字无法缩放。鼠标移入节点的鼠标样式无法更改。 [echarts]

2024-06-02 Thread via GitHub


github-actions[bot] closed issue #12261: 在graph关系图中,文字无法缩放。鼠标移入节点的鼠标样式无法更改。
URL: https://github.com/apache/echarts/issues/12261


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

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

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


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



Re: [I] [Bug] visualMap.dimension should work with dimension name and not just the dimension number [echarts]

2024-06-02 Thread via GitHub


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

   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



Re: [I] Add option to automatically assign label position for sankey node labels [echarts]

2024-06-02 Thread via GitHub


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

   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



Re: [I] Add option to automatically assign label position for sankey node labels [echarts]

2024-06-02 Thread via GitHub


github-actions[bot] closed issue #12890: Add option to automatically assign 
label position for sankey node labels
URL: https://github.com/apache/echarts/issues/12890


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

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

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


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



Re: [I] [Feature] the lineStyle of splitLine supports change by index [echarts]

2024-06-02 Thread via GitHub


xch1029 commented on issue #19995:
URL: https://github.com/apache/echarts/issues/19995#issuecomment-2143894118

   Expect more properties to support more customization in the form of function 
callback.
   such as : function(item, index) {}


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

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

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


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



[I] [Feature] the lineStyle of splitLine supports change by index [echarts]

2024-06-02 Thread via GitHub


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

   ### What problem does this feature solve?
   
   by this feature. Styles can be more customized.
   
   ### What does the proposed API look like?
   
   ```
   series: [
   {
 type: 'gauge',
 splitLine: {
   length: 15,
   lineStyle: function(item, index) {
   // so can change the style by index
   return {
   width: index,
   color: '#999'
   }
 },
   }
 ]
   ```


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

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

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


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



Re: [I] [Feature] Enable Sankey series link to have different values or "weights" at source and target node [echarts]

2024-06-01 Thread via GitHub


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

   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



Re: [I] [Feature] I need a tooltip containing the data text on hovering over Y-axis data in Binary echart. [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #17114: [Feature]  I need a tooltip containing 
the data text on hovering over Y-axis data in Binary echart.
URL: https://github.com/apache/echarts/issues/17114


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

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

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


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



Re: [I] dispatchAction实现图表联动问题[Bug] [echarts]

2024-06-01 Thread via GitHub


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

   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



Re: [I] [Feature] Expand Collapse feature in Force Graph [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #17112: [Feature] Expand Collapse feature in 
Force Graph
URL: https://github.com/apache/echarts/issues/17112


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

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

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


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



Re: [I] [Bug] Toolbox unresponsive at high data update rate [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #17090: [Bug] Toolbox unresponsive at high 
data update rate 
URL: https://github.com/apache/echarts/issues/17090


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

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

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


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



Re: [I] [Bug] Toolbox unresponsive at high data update rate [echarts]

2024-06-01 Thread via GitHub


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

   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



Re: [I] dynamic bar with sorting process negative value as postive [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #16124: dynamic bar with sorting process 
negative value as postive 
URL: https://github.com/apache/echarts/issues/16124


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

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

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


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



Re: [I] [Feature] Enable Sankey series link to have different values or "weights" at source and target node [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #17121: [Feature] Enable Sankey series link to 
have different values or "weights" at source and target node 
URL: https://github.com/apache/echarts/issues/17121


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

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

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


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



Re: [I] [Feature] I need a tooltip containing the data text on hovering over Y-axis data in Binary echart. [echarts]

2024-06-01 Thread via GitHub


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

   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



Re: [I] [Feature] Expand Collapse feature in Force Graph [echarts]

2024-06-01 Thread via GitHub


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

   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



Re: [I] dispatchAction实现图表联动问题[Bug] [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #17106: dispatchAction实现图表联动问题[Bug] 
URL: https://github.com/apache/echarts/issues/17106


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

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

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


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



Re: [I] [Bug] Resizing cancels option transitions [echarts]

2024-06-01 Thread via GitHub


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

   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



Re: [I] [Bug] Resizing cancels option transitions [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #17092: [Bug] Resizing cancels option 
transitions
URL: https://github.com/apache/echarts/issues/17092


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

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

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


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



Re: [I] [Bug] xAxis.axisPointer.label sometimes does not disappear [echarts]

2024-06-01 Thread via GitHub


github-actions[bot] closed issue #17091: [Bug]  xAxis.axisPointer.label 
sometimes does not disappear
URL: https://github.com/apache/echarts/issues/17091


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



  1   2   3   4   5   6   7   8   9   10   >