Inline editing svg

by Alexandre Froger

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

CSS

.ngesvghidden{visibility:hidden};

JavaScript

$(function () {
    Highcharts.chart('container', {
       {
       "series":[
       	{
        "name":"S\u00e9rie 1",
        "type":"line",
        data: [7.0, 6.9],
        },{
        "name":"S\u00e9rie 3",
        "type":"line",
        data: [7.0, 6.9]
        },
        {
        "name":"S\u00e9rie 4",
        "type":"line",
        data: [7.0, 6.9]
        }
        ],
       "title":{"text":"Solar Employment Growth by Sector, 2010-2016"},
       "subtitle":{"text":"Sample data"},
       "xAxis":{"title":{"text":"Number of Employees"},"categories":["test 1","test 2"]},
       "yAxis":{"title":{"text":"Values"}}
      }
    });
});