| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 | <!DOCTYPE HTML><html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">		<meta name="viewport" content="width=device-width, initial-scale=1">		<title>Highcharts Example</title>		<style type="text/css">		</style>	</head>	<body><script src="../../code/highcharts.js"></script><script src="../../code/modules/exporting.js"></script><div id="container" style="width: 600px; height: 250px; margin: 0 auto"></div>		<script type="text/javascript">Highcharts.chart('container', {    chart: {        backgroundColor: 'white',        events: {            load: function () {                // Draw the flow chart                var ren = this.renderer,                    colors = Highcharts.getOptions().colors,                    rightArrow = ['M', 0, 0, 'L', 100, 0, 'L', 95, 5, 'M', 100, 0, 'L', 95, -5],                    leftArrow = ['M', 100, 0, 'L', 0, 0, 'L', 5, 5, 'M', 0, 0, 'L', 5, -5];                // Separator, client from service                ren.path(['M', 120, 40, 'L', 120, 330])                    .attr({                        'stroke-width': 2,                        stroke: 'silver',                        dashstyle: 'dash'                    })                    .add();                // Separator, CLI from service                ren.path(['M', 420, 40, 'L', 420, 330])                    .attr({                        'stroke-width': 2,                        stroke: 'silver',                        dashstyle: 'dash'                    })                    .add();                // Headers                ren.label('Web client', 20, 40)                    .css({                        fontWeight: 'bold'                    })                    .add();                ren.label('Web service / CLI', 220, 40)                    .css({                        fontWeight: 'bold'                    })                    .add();                ren.label('Command line client', 440, 40)                    .css({                        fontWeight: 'bold'                    })                    .add();                // SaaS client label                ren.label('SaaS client<br/>(browser or<br/>script)', 10, 82)                    .attr({                        fill: colors[0],                        stroke: 'white',                        'stroke-width': 2,                        padding: 5,                        r: 5                    })                    .css({                        color: 'white'                    })                    .add()                    .shadow(true);                // Arrow from SaaS client to Phantom JS                ren.path(rightArrow)                    .attr({                        'stroke-width': 2,                        stroke: colors[3]                    })                    .translate(95, 95)                    .add();                ren.label('POST options in JSON', 90, 75)                    .css({                        fontSize: '10px',                        color: colors[3]                    })                    .add();                ren.label('PhantomJS', 210, 82)                    .attr({                        r: 5,                        width: 100,                        fill: colors[1]                    })                    .css({                        color: 'white',                        fontWeight: 'bold'                    })                    .add();                // Arrow from Phantom JS to Batik                ren.path(['M', 250, 110, 'L', 250, 185, 'L', 245, 180, 'M', 250, 185, 'L', 255, 180])                    .attr({                        'stroke-width': 2,                        stroke: colors[3]                    })                    .add();                ren.label('SVG', 255, 120)                    .css({                        color: colors[3],                        fontSize: '10px'                    })                    .add();                ren.label('Batik', 210, 200)                    .attr({                        r: 5,                        width: 100,                        fill: colors[1]                    })                    .css({                        color: 'white',                        fontWeight: 'bold'                    })                    .add();                // Arrow from Batik to SaaS client                ren                    .path([                        'M', 235, 185,                        'L', 235, 155,                        'C', 235, 130, 235, 130, 215, 130,                        'L', 95, 130,                        'L', 100, 125,                        'M', 95, 130,                        'L', 100, 135                    ])                    .attr({                        'stroke-width': 2,                        stroke: colors[3]                    })                    .add();                ren.label('Rasterized image', 100, 110)                    .css({                        color: colors[3],                        fontSize: '10px'                    })                    .add();                // Browser label                ren.label('Browser<br/>running<br/>Highcharts', 10, 180)                    .attr({                        fill: colors[0],                        stroke: 'white',                        'stroke-width': 2,                        padding: 5,                        r: 5                    })                    .css({                        color: 'white',                        width: '100px'                    })                    .add()                    .shadow(true);                // Arrow from Browser to Batik                ren.path(rightArrow)                    .attr({                        'stroke-width': 2,                        stroke: colors[1]                    })                    .translate(95, 205)                    .add();                ren.label('POST SVG', 110, 185)                    .css({                        color: colors[1],                        fontSize: '10px'                    })                    .add();                // Arrow from Batik to Browser                ren.path(leftArrow)                    .attr({                        'stroke-width': 2,                        stroke: colors[1]                    })                    .translate(95, 215)                    .add();                ren.label('Rasterized image', 100, 215)                    .css({                        color: colors[1],                        fontSize: '10px'                    })                    .add();                // Script label                ren.label('Script', 450, 82)                    .attr({                        fill: colors[2],                        stroke: 'white',                        'stroke-width': 2,                        padding: 5,                        r: 5                    })                    .css({                        color: 'white',                        width: '100px'                    })                    .add()                    .shadow(true);                // Arrow from Script to PhantomJS                ren.path(leftArrow)                    .attr({                        'stroke-width': 2,                        stroke: colors[2]                    })                    .translate(330, 90)                    .add();                ren.label('Command', 340, 70)                    .css({                        color: colors[2],                        fontSize: '10px'                    })                    .add();                // Arrow from PhantomJS to Script                ren.path(rightArrow)                    .attr({                        'stroke-width': 2,                        stroke: colors[2]                    })                    .translate(330, 100)                    .add();                ren.label('Rasterized image', 330, 100)                    .css({                        color: colors[2],                        fontSize: '10px'                    })                    .add();            }        }    },    title: {        text: 'Highcharts export server overview',        style: {            color: 'black'        }    }});		</script>	</body></html>
 |