차트로 표시하기

type: query
name: 상품 카테고리 비율
resource: mysql.qa
sqlType: select
sql: >
  select `type`, count(id) AS count
  from products
  where `type` IS NOT NULL
  group by `type`
chartOptions:
  type: bar # line, doughnut, polarArea
  x: type
  y: count
showButtonWithResult: true

바(bar) 차트

Untitled

chartOptions:
  type: bar
  x: type
  y: count
showButtonWithResult: true

선(line) 차트

Untitled

chartOptions:
  type: line
  x: type
  y: count
showButtonWithResult: true

도넛(doughnut), 원형 차트

Untitled

chartOptions:
  type: doughnut
  x: type
  y: count
showButtonWithResult: true

폴라에어리어(polarArea) 차트

붙여넣은_이미지_2022__4__12__오후_3_00.png

chartOptions:
  type: polarArea
  x: type
  y: count
showButtonWithResult: true

너비(가로), 높이(세로 길이) 조절

chartOptions:
  type: bar
  x: 날짜
  y: count
  width: 500px
  height: 300px