PN MVP modeling

by Mike Rawling

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; min-height: 600px; max-width: 1600px; margin: 0 auto"></div>

JavaScript

Highcharts.chart('container', {
    chart: {
        type: 'scatter',
        zoomType: 'xy',
        style: {
            fontFamily: 'Lato, sans-serif'
        }
    },
    credits: {
      enabled: false
  	},
    exporting:{
    	enabled: false
    },
    title: {
        text: 'PostNord MVPs Prioritised'
    },
    subtitle: {
        text: 'Design Thinking Workshop 05-2019'
    },
    xAxis: {
        title: {
            enabled: true,
            text: 'Relative complexity'
        },
        startOnTick: true,
        endOnTick: true,
        showLastLabel: true
        //minRange: 100
    },
    yAxis: {
        title: {
            text: 'Relative accessibility'
        },
        plotLines: [{
            color: 'grey',
            dashStyle: 'dot',
            width: 2,
            value: 17,
            label: {
                align: 'right',
                style: {
                    fontStyle: 'italic',
                    color: '#00A0D6'
                },
                text: 'Top 3 most valuable',
                x: -10
            },
            zIndex: 3
        }]
    },
    legend: {
        layout: 'vertical',
        align: 'center',
        verticalAlign: 'bottom',
        /*
        x: 100,
        y: 70,
        */
        floating: false,
        backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF',
        borderWidth: 0,
        minRange: 100
    },
    plotOptions: {
        scatter: {
            marker: {
              	symbol: 'circle',
                radius: 30,
                states: {
                    hover: {
                        enabled: true,
                        lineColor: 'rgb(100,100,100)'
                    }
                }
            },
            states: {
                hover: {
                    marker: {
                        enabled: false
                    }
                }
            },
            tooltip: {
                headerFormat:...