@devexpress/dx-chart-core
Advanced tools
Changelog
2.6.0 (2020-03-27)
Changelog
2.5.0 (2020-03-04)
Changelog
2.4.1 (2020-02-20)
Changelog
2.4.0 (2020-01-16)
Changelog
2.3.1 (2019-12-05)
Changelog
2.3.0 (2019-11-22)
Changelog
2.2.1 (2019-11-07)
Changelog
2.2.0 (2019-10-25)
DayView
and WeekView
plugins now do not have the timeScaleRowComponent
and timeScaleCellComponent
properties. Instead, they have a new, timeScaleLabelComponent
, property....
<WeekView
- timeScaleRowComponent
- timeScaleCellComponent
+ timeScaleLabelComponent
/>
<DayView
- timeScaleRowComponent
- timeScaleCellComponent
+ timeScaleLabelComponent
/>
...
headerComponent
and contentComponent
in the AppointmentTooltip
plugin with new properties. If you use these components, add the following properties in your code:...
<AppointmentTooltip
headerComponent={({
+ commandButtonComponent
+ showOpenButton
+ showCloseButton
+ showDeleteButton
+ commandBottonIds
...restProps
}) => (
<AppointmentTooltip.Header
+ commandButtonComponent={commandButtonComponent}
+ showOpenButton={showOpenButton}
+ showCloseButton={showCloseButton}
+ showDeleteButton={showDeleteButton}
+ commandBottonIds={commandBottonIds}
{...restProps}
/>
)}
contentComponent={({
+ formatDate
...restProps
}) => (
<AppointmentTooltip.Content
+ formatDate={formatDate}
{...restProps}
/>
)}
/>
...