<template>
  <div>
    <div class="wrap">
      <h1>1.6 million sessions, one dot per 2,000</h1>
      <p>
        Three arcs and a dot, as one stroked centreline. The gaps between the
        arcs are the constraint rather than the arcs themselves: pack too few
        dots and neighbouring bands merge into a solid fan, which is what this
        shape's minimum count protects. The dot is a zero-length segment, which
        the stroke resolves to a single disc.
      </p>

      <div class="chart-wrap">
        <div id="chart">
          <apexchart
            type="unit"
            height="470"
            :options="chartOptions"
            :series="series"
          ></apexchart>
        </div>
      </div>

      <p class="note">1 dot = 2,000 sessions</p>
    </div>
  </div>
</template>

<script>
import VueApexCharts from 'vue-apexcharts'

// This demo also loads: https://cdn.jsdelivr.net/npm/apexcharts/dist/unit-shapes.js

export default {
  components: {
    apexchart: VueApexCharts,
  },
  data: function () {
    return {
      series: [900000, 400000, 240000, 60000],
      chartOptions: {
        chart: {
          type: 'unit',
          height: 470,
          animations: {
            enabled: true,
            speed: 900,
          },
        },
        labels: ['Wifi', '5G', '4G', 'Wired'],
        colors: ['#008FFB', '#00B8A9', '#F2994A', '#7B8794'],
        plotOptions: {
          unit: {
            layout: 'custom',
            // A stroke shape from apexcharts/unit-shapes.
            positions: 'wifi',
            transition: 'flow',
            unitValue: 2000,
            clusterLabels: {
              // Outer labels: each band is named in the margin with a leader line to its
              // own dots, so the crowd reads without a legend.
              external: {
                show: true,
              },
            },
          },
        },
        legend: {
          show: false,
        },
      },
    }
  },
}
</script>

<style>
body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fafbfc;
  color: #2c3e50;
  margin: 0;
  padding: 32px 16px;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
}
h1 {
  font-size: 22px;
  margin: 0 0 8px;
}
p {
  color: #5b6b78;
  line-height: 1.5;
  margin: 0 0 24px;
}
.chart-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.note {
  color: #8592a0;
  font-size: 12px;
  text-align: center;
  margin: 16px 0 0;
}
</style>
Connection Types - Vue Unit Charts | ApexCharts.js | ApexCharts.js