Skip to content

v3.2.0

Compare
Choose a tag to compare
@jinwoo-kim-nhn jinwoo-kim-nhn released this 17 Jul 05:35
· 390 commits to main since this release

Added

  • Added two yAxis options in the line chart.

    • example link

      //...
      var options = {
            //...
          yAxis: [{
              title: 'Temperature (Celsius)',
          }, {
              title: 'Percent (%)',
              min: 0,
              max: 100,
              suffix: '%'
          }]
      };
      //...
      tui.chart.lineChart(container, rawData, options);
  • Added two yAxis options in the bar chart.

    • example link

      //...
      var options = {
            //...
          yAxis: [{
              title: 'Month'
          }, {
              title: 'Secondary Info',
              categories: ['06 / 2017', '07 / 2017', '08 / 2017', '09 / 2017', '10 / 2017', '11 / 2017']
          }],
      };
      //...
      tui.chart.barChart(container, rawData, options);

Fixed

  • Fixed a bug where there was no data when exporting from a pie chart.
  • Fixed bug where rightYAxis of diverging chart is not visible.
  • Fixed a bug that Using two yAxis options in Combo chart did not work.