Skip to content

v3.8.0

Compare
Choose a tag to compare
@jung-han jung-han released this 23 Sep 07:02

Added

  • Added maxWidth option to Axis. If the text is longer than maxWidth, text display an ellipsis ('…').
var options = {
  xAxis: {
    maxWidth: 30
  },
  yAxis: {
    maxWidth: 50
  }
}
var chart = tui.chart.barChart(container, data, options);