nhn / tui.chart

🍞📊 Beautiful chart for data visualization.
http://ui.toast.com/tui-chart/
MIT License
5.35k stars 327 forks source link

pieChart 생성 후 tooptip #815

Open baeda0707 opened 2 months ago

baeda0707 commented 2 months ago

pieChart에 0인 데이터가 있으면 tooltip이 이상하게 표기되는 것 같습니다. 데이터는 실수치를 입력하겨 %를 입력하지 않았습니다.

demo를 사용하여 test 했습니다. ( https://nhn.github.io/tui.chart/latest/tutorial-example09-01-pie-chart-basic)

pie_chart

[ sample data ]

  const el = document.getElementById('chart-area');
  const data = {
    categories: ['Browser'],
    series: [
      {
        name: 'Chrome',
        data: 0,
      },
      {
        name: 'IE',
        data: 0,
      },
      {
        name: 'Firefox',
        data: 1,
      },
      {
        name: 'Safari',
        data: 0,
      },
      {
        name: 'Opera',
        data: 0,
      },

    ],
  };
  const options = {
    chart: { title: 'Usage share of web browsers', width: 600, height: 400 },
  };
  const chart = toastui.Chart.pieChart({ el, data, options });