You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2021/08/26 17:32:48 UTC

[GitHub] [echarts] dignfei opened a new issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

dignfei opened a new issue #15611:
URL: https://github.com/apache/echarts/issues/15611


   ### Version
   5.1.2
   
   ### Reproduction link
   [https://echarts.apache.org/zh/option.html#series-line.markPoint.data.symbolOffset](https://echarts.apache.org/zh/option.html#series-line.markPoint.data.symbolOffset)
   
   ### Steps to reproduce
   20210826的master版本,symbolOffset还是无效
   1.安装master版本:
   npm uninstall echarts
   npm install https://github.com/apache/echarts/tarball/master
   2. option 配置:
   option = {
     xAxis: {
       type: "category",
       data: ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
     },
     yAxis: {},
     series: [{
       data: [820, 932, 901, 934, 1290, 1330, 1320],
       type: "line",
       markPoint: {
         data: [{
           type: "max",
           symbolOffset: [123, 232]  // 修改这里的值,图形不会变化,这里的设置无效 
         }]
       }
     }]
   }
   3.修改symbolOffset的 x或y的值,图形不会变化。本来应该有变化的
   
   ### What is expected?
   5.0版本时,配置项series-line.markPoint.data. symbolOffset 有效,而之后的5.1和5.1.2版本和20210826的master版本 这个配置都失效了,
   
   ### What is actually happening?
   配置项symbolOffset失效了
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   <!-- This issue is in English. DO NOT REMOVE -->


-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] echarts-bot[bot] closed issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
echarts-bot[bot] closed issue #15611:
URL: https://github.com/apache/echarts/issues/15611


   


-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] plainheart commented on issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #15611:
URL: https://github.com/apache/echarts/issues/15611#issuecomment-906952716


   ```
   npm install echarts-nightly
   ```


-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] plainheart commented on issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #15611:
URL: https://github.com/apache/echarts/issues/15611#issuecomment-906866679


   master 分支上的构建文件还是 5.1.2 的,5.2.0 还没有发布。如果想尝试最新构建,可以用 https://www.npmjs.com/package/echarts-nightly


-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] robshep commented on issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
robshep commented on issue #15611:
URL: https://github.com/apache/echarts/issues/15611#issuecomment-907172539


   I can confirm `series-line.markPoint.data.symbolOffset` does not work.
   Tested with `symbol: 'pin'` and `symbol: 'path://<<svg>>`
   
   The symbol does not move by X or Y offset as expected.
   
   To reproduce trivially:
   
   1. go here: https://echarts.apache.org/examples/en/editor.html?c=line-marker
   
   2. add the highlighted code to the existing markPoint in the first series
   
   ![image](https://user-images.githubusercontent.com/1799763/131128532-7c03f53b-bed2-4b52-aa94-dce303c1171a.png)
   
   Thx
   


-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] dignfei commented on issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
dignfei commented on issue #15611:
URL: https://github.com/apache/echarts/issues/15611#issuecomment-913168446


   > ```
   > npm install echarts-nightly
   > ```
   
   请问为什么echarts-nightly还有这个bug  https://github.com/apache/echarts/issues/14583 ,而master版本没有这个bug了。
   echarts-nightly是最新的代码,为什么没有合并解决这个bug的代码?


-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] echarts-bot[bot] commented on issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
echarts-bot[bot] commented on issue #15611:
URL: https://github.com/apache/echarts/issues/15611#issuecomment-906605052






-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] dignfei commented on issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
dignfei commented on issue #15611:
URL: https://github.com/apache/echarts/issues/15611#issuecomment-906918941


   > master 分支上的构建文件还是 5.1.2 的,5.2.0 还没有发布。如果想尝试最新构建,可以用 https://www.npmjs.com/package/echarts-nightly
   
   请问怎么安装echarts-nightly?


-- 
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-unsubscribe@echarts.apache.org

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



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


[GitHub] [echarts] dignfei commented on issue #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

Posted by GitBox <gi...@apache.org>.
dignfei commented on issue #15611:
URL: https://github.com/apache/echarts/issues/15611#issuecomment-913167659


   > ```
   > npm install echarts-nightly
   > ```
   
   感谢


-- 
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-unsubscribe@echarts.apache.org

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



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