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

   ### What problem does this feature solve?
   
   Is there a way to fill the area between each points of a serie type "lines" ?
   
   for exemple :
   
![image](https://github.com/apache/echarts/assets/53522372/ab636cff-90eb-4f34-8a69-38c19c4bf969)
   
   
   example with code:
   
   $.get(
     ROOT_PATH + '/data/asset/geo/MacOdrum-LV5-floorplan-web.svg',
     function (svg) {
       echarts.registerMap('MacOdrum-LV5-floorplan-web', { svg: svg });
       option = {
         geo: {
           map: 'MacOdrum-LV5-floorplan-web',
           roam: true
         },
         series: [
           {
             name: 'Route',
             type: 'lines',
             coordinateSystem: 'geo',
             geoIndex: 0,
             emphasis: {
               label: {
                 show: false
               }
             },
             polyline: true,
             lineStyle: {
               width: 5,
             },
             data: [
               {
                 coords: [
                   [100, 400],
                   [300, 400],
                   [300, 600],
                 ]
               }
             ]
           }
         ]
       };
       myChart.setOption(option);
     }
   );
   
   ### What does the proposed API look like?
   
   is there a "areaBackground" or a boolean to activate it ?


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to