Modifier and Type | Method and Description |
---|---|
LineChart |
LineChart.addEntry(Number y)
Adds the new entry (now(), y) entry, with now the current timestamp.
|
LineChart |
LineChart.addEntry(Number x,
Number y)
Adds the (x, y) entry into this chart
|
LineChart |
LineChart.leftShift(Number y)
Adds the new entry (now(), y) entry, with now the current timestamp.
|
LineChart |
LineChart.removeEntry(int i)
removes the i-th (x, y) entry
|
LineChart |
LineChart.removeLastEntry()
Removes the last (x, y) entry
|
LineChart |
LineChart.setDrawValues(Boolean drawValues)
Sets whether the y values should be displayed when this chart is showed
|
LineChart |
LineChart.setShowGrid(boolean showGrid)
Sets whether this chart should show the grid when it is displayed (default value is true)
|
LineChart |
LineChart.setTimeUnitX(TimeUnit timeUnitX)
Set the time unit used to display x axis.
|
LineChart |
LineChart.setTitle(String title)
Sets the title of this chart
|
LineChart |
LineChart.setX(List<Number> x)
Sets the list of x values
|
LineChart |
LineChart.setY(List<Number> y)
Sets the list of y values
|
Modifier and Type | Method and Description |
---|---|
List<LineChart> |
MultiLineChart.getLineCharts()
Returns all the line charts contained by this multi line chart
|
Modifier and Type | Method and Description |
---|---|
MultiLineChart |
MultiLineChart.add(LineChart lineChart)
Adds a line chart to this multi line chart
|
Modifier and Type | Method and Description |
---|---|
MultiLineChart |
MultiLineChart.setLineCharts(List<LineChart> lineCharts)
Sets all the line charts contained by this multi line chart
|
Copyright © 2021. All rights reserved.