파이/도넛 차트에 퍼센트 비율 표시하기

카테고리 타입 통계를 시각화 할때 비율이 표시되어있으면 편리합니다.
셀렉트에서 제공하는 차트에서는 왼쪽 범례(legend)를 클릭시 해당 지표를 제외하여 % 퍼센트를 다시 계산해줍니다.


resource: mysql.qa
sql: > 
  SELECT COALESCE(`type`, 'NONE') AS tt, count(id) as 'c'
  FROM properties2
  GROUP BY `type`
  ORDER BY 2 DESC
chartOptions:
  type: doughnut
  x: tt
  y: c
  colorschemes: tableau.Tableau20
  height: 400
  width: 700
  options:
    responsive: false
    plugins: 
      legend:
        position: left 
        align: start
      datalabels:
        formatter: percentage
        color: '#fff'

*태블루 색상을 이용 가능합니다.