DevExtreme React Grid v1.9.0 Release Notes

Release Date: 2018-11-07 // over 5 years ago
  • ๐Ÿ› Bug Fixes

    • react-chart: fix indent from axis for label w/o tick and line components (#1528) (e8b2ccb)
    • react-chart: fix stacks processing (#1535) (9660d5f)
    • react-grid: correct order of fixed right columns (#1533) (00ccebd)
    • react-grid: pass undefined as empty value to filter editorComponent (#1522) (e69813f)
    • react-grid: use a column filter operation as a filter selector value (#1479) (70e26fa), closes #1474
    • react-grid-bootstrap3/4: prevent sorting for disabled columns (#1490) (086242d)
    • react-grid-bootstrap4: fix position of dragged column header (#1513) (8e0893c)
    • react-grid-bootstrap4: prevent filter popup cut off on fixed columns (#1576) (979476e)

    ๐Ÿ”‹ Features

    • โฑ react-scheduler: add the React Scheduler component
    • react-chart: add animation plugin (#1469) (3c41352)
    • โšก๏ธ update dependencies (#1542) (f32f1b2)

    ๐Ÿ”จ Code Refactoring

    • react-chart: remove "groupWidth" property from BarSeries (0a15e87)

    ๐Ÿ’ฅ BREAKING CHANGES

    • react-chart: The groupWidth property configures a band scale for arguments - it is not a property of a particular bar series. ๐Ÿ”ง To configure a band scale, use the Scale plugin as follows:
    <Scale extensions={[{ type: 'band', constructor: d3.scaleBand().paddingOuter(0.1).paddingInner(0.2) }]} />