Sha256: 33d2e5e7acd29872599367d7028af65ad11914b5fb2755ccdc98a24e2d108f13

Contents?: true

Size: 1.19 KB

Versions: 8

Compression:

Stored size: 1.19 KB

Contents

{
  credits: {
    enabled: false
  },
  chart: {
    plotBackgroundColor: null,
    plotBorderWidth: null,
    plotShadow: false,
    type: 'pie'
  },
  title: {
    text: 'Browser market shares January, 2015 to May, 2015'
  },
  tooltip: {
    pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
  },
  plotOptions: {
    pie: {
      allowPointSelect: true,
      cursor: 'pointer',
      dataLabels: {
        enabled: true,
        format: '<b>{point.name}</b>: {point.percentage:.1f} %',
        style: {
          color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
        }
      }
    }
  },
  series: [
    {
      name: "Brands",
      colorByPoint: true,
      data: [
        {
          name: "Microsoft Internet Explorer",
          y: 56.33
        },
        {
          name: "Chrome",
          y: 24.03,
          sliced: true,
          selected: true
        },
        {
          name: "Firefox",
          y: 10.38
        },
        {
          name: "Safari",
          y: 4.77
        },
        {
          name: "Opera",
          y: 0.91
        },
        {
          name: "Proprietary or Undetectable",
          y: 0.2
        }
      ]
    }
  ]
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
asciinurse-0.1.7 examples/charts/browsers-highcharts.json
asciinurse-0.1.6 examples/charts/browsers-highcharts.json
asciinurse-0.1.5 examples/charts/browsers-highcharts.json
asciinurse-0.1.4 examples/charts/browsers-highcharts.json
asciinurse-0.1.3 examples/charts/browsers-highcharts.json
asciinurse-0.1.2 examples/charts/browsers-highcharts.json
asciinurse-0.1.1 examples/charts/browsers-highcharts.json
asciinurse-0.1.0 examples/charts/browsers-highcharts.json