-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
ChartTracer
Jason Park edited this page Jul 13, 2018
·
1 revision
Visualize a one-dimensional array into a bar chart. Usage
Name | Description | |
---|---|---|
ChartTracer | Create a ChartTracer object. | Usage |
new ChartTracer(String title = "ChartTracer") |
||
set | Set array1d to visualize. |
Usage |
ChartTracer set(Object[] array1d = []) |
||
reset | Reset data. | Usage |
ChartTracer reset() |
||
delay | Pause to show changes in all tracers. | Usage |
ChartTracer delay() |
||
patch | Notify that the value at (x ) has been changed to v . |
Usage |
ChartTracer patch(int x, Object v) |
||
depatch | Stop notifying that the value at (x ) has been changed. |
Usage |
ChartTracer depatch(int x) |
||
select | Select (x ). |
Usage |
ChartTracer select(int x) |
||
select | Select from (sx ) to (ex ). |
Usage |
ChartTracer select(int sx, int ex) |
||
deselect | Stop selecting (x ). |
Usage |
ChartTracer deselect(int x) |
||
deselect | Stop selecting from (sx ) to (ex ). |
Usage |
ChartTracer deselect(int sx, int ex) |
||
chart | Synchronize data with chartTracer . |
Usage |
ChartTracer chart(ChartTracer chartTracer) |