Skip to content

v3.10.0

Compare
Choose a tag to compare
@jung-han jung-han released this 03 Feb 02:26

Features

  • destroy API
    • Destroys the chart instance.
    var chart = new LineChart({ ... });
    
    chart.destroy();

Enhancement

  • add series animation duration options(#203)
    • except radial, map, box, dynamically line type chart
    • default: true
const options = {
  series: {
    animation: false
  }
}
// or

const options = {
  series: {
    animation: {
      duration: 0 // number
    }
  }
}
  • add animation parameter to setData
chart.setData(rawData, false); // off animation
chart.setData(rawData, {duration: 1000}); // set animation duration
  • Improving tooltip(#255)
    • reduce tooltip animation duration
    • Fixed event detection on tooltips
    • Change bound area from 50 to chart tick interval

Bugfixes

  • Fixed that YAxis is moved when set rotateLabel false(#245)