yangzj208 opened a new issue #11910: Line增加数据类型 URL: https://github.com/apache/incubator-echarts/issues/11910 ### What problem does this feature solve? 目前的Line类型的曲线横纵坐标的值必须是一一对应的,很多场合下,横坐标的值一般都是从某一值开始,等间隔分布的,这时如果每一条曲线都按现在的方式存储值的话,在数据量大的时候太浪费空间了。 建议增加一个类型,x值可只保存起始值,间隔值这两个值就可以,具体Y对应的值通过这两个值计算即可 或者有没有其他的方式可实现这一需求,请大家帮忙指教,谢谢 ### What does the proposed API look like? series:{ x:{ startvalue:0.1, interval:0.2 }, y:[0,1.1,3,4,5.6,...] } <!-- This issue is generated by echarts-issue-helper. 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
