@devexpress/dx-chart-core
Advanced tools
Changelog
1.9.1 (2018-12-07)
react-scheduler:
We have changed the onChange
function's argument type to make the ViewSwitcher
's API more clear.
Previously:
onChange({ nextViewName: string }) => void
Now:
onChange(nextViewName: string) => void
react-scheduler:
We changed the onNavigate
function's argument type to make the DateNavigator
's API more clear.
Previously:
onNavigate({ back: boolean }) => void
Now:
onNavigate(direction: 'forward' | 'back') => void
react-chart:
In the ArgumentAxis
and ValueAxis
plugins lineComponent
and tickComponent
render identical svg-path elements. Previously, they require different properties for drawing: width
and height
for lineComponent
and x1
, x2
, y1
, y2
for tickComponent
.
Now, for more consistency the lineComponent
requires the same properties as tickComponent
.
Previously, there were ArgumentGrid
and ValueGrid
plugins that render grid lines for axes. Now, grids are part of the axes:
<ArgumentAxis showGrids />
<ValueAxis />
For grid customization, use gridComponent
as follows:
<ArgumentAxis gridComponent={...} />
<ValueAxis gridComponent={...} />
<a name="1.9.0"></a>
Changelog
1.9.0 (2018-11-07)
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) }]} />
<a name="1.8.0"></a>
Changelog
1.8.0 (2018-10-04)
react-chart: Previously, there was a single Grid
plugin. Now there are ArgumentGrid
and ValueGrid
plugins.
ArgumentGrid
is bound to an argument domain.
ValueGrid
is bound to a value domain specified by the name property or to a default domain.
react-chart: Previously, the Chart component configured scales internally. Starting with this release, we extracted the scale customization logic to a separate plugin to enable a user to customize a scale. Now, you need to manually add the Scale
plugin to the Chart component to draw a chart.
<a name="1.8.0-beta.1"></a>
Changelog
1.8.0-beta.1 (2018-09-07)
getMessage
property was moved from the TableHeaderRow.CellProps
interface to TableHeaderRow.SortLabelProps
. This property returns the sort label's text.<a name="1.7.2"></a>
Changelog
1.7.0 (2018-08-23)
<a name="1.6.1"></a>
Changelog
1.6.0 (2018-08-17)
<a name="1.5.1"></a>