From bee361ed5d2dcee35f73b76a253bf35f912227b8 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 9 Sep 2020 17:45:14 +0300 Subject: [PATCH] readme update --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f629af4..0ebbd63 100644 --- a/README.md +++ b/README.md @@ -67,14 +67,14 @@ npm start ### EventOption -| Parameter Name | Type | Description | -| :----------------- | :------------------------------------------ | :-------------------------------------------------------------------------------------- | -| onSelect | (task: Task, isSelected: boolean) => void | Specifies the function to be executed on the taskbar select or unselect event. | -| onDoubleClick | (task: Task) => void | Specifies the function to be executed on the taskbar onDoubleClick event. | -| onTaskDelete\* | void/boolean/Promise/Promise | Specifies the function to be executed on the taskbar on Delete button press event. | -| onDateChange\* | void/boolean/Promise/Promise | Specifies the function to be executed when drag taskbar event on timeline has finished. | -| onProgressChange\* | void/boolean/Promise/Promise | Specifies the function to be executed when drag taskbar progress event has finished. | -| timeStep | number | A time step value for onDateChange. Specify in milliseconds. | +| Parameter Name | Type | Description | +| :----------------- | :---------------------------------------------------------- | :-------------------------------------------------------------------------------------- | +| onSelect | (task: Task, isSelected: boolean) => void | Specifies the function to be executed on the taskbar select or unselect event. | +| onDoubleClick | (task: Task) => void | Specifies the function to be executed on the taskbar onDoubleClick event. | +| onTaskDelete\* | (task: Task) => void/boolean/Promise/Promise | Specifies the function to be executed on the taskbar on Delete button press event. | +| onDateChange\* | (task: Task) => void/boolean/Promise/Promise | Specifies the function to be executed when drag taskbar event on timeline has finished. | +| onProgressChange\* | (task: Task) => void/boolean/Promise/Promise | Specifies the function to be executed when drag taskbar progress event has finished. | +| timeStep | (task: Task) => number | A time step value for onDateChange. Specify in milliseconds. | \* Chart undoes operation if method return false or error.