Package | Description |
---|---|
InstrumentationPlatformGUI.Elements |
Modifier and Type | Method and Description |
---|---|
PlotLine |
GUIChart.getLine(java.lang.String letter,
boolean createIfNonexistant)
If the line with this letter exists, return it; otherwise create it and
return it, if the 2nd argument is set to true or ignore otherwise.
|
PlotLine |
GUIChart.getPlotLineByChar(char c)
Get a PlotLine object, provided a char.
|
Modifier and Type | Method and Description |
---|---|
void |
GUIChart.addLine(PlotLine pl)
Add a new line, setting the color of it in such a way, that it's easily
distinguishable from the other colors of lines already in the chart.
|
void |
GUIChart.paintSingleHistogram(javafx.scene.canvas.GraphicsContext gc,
PlotLine pl,
javafx.scene.paint.Color fillCol,
javafx.scene.paint.Color strokeCol,
double minX,
double minY,
double maxX,
double maxY)
Paint a single histogram, stored in the PlotLine pl, as a series of
rectangles, given a fill color and a stroke color and also minimum and
maximum positions, beyond which the histogram should never be drawn.
|
void |
GUIChart.paintSingleLine(PlotLine pl,
javafx.scene.canvas.GraphicsContext gc,
javafx.scene.paint.Color c,
double lineWidth,
double minX,
double minY,
double maxX,
double maxY)
Paint a single line pl on the provided GraphicsContext gc, with a Color
c, line width lineWidth, clamped by minX, minY, maxX, maxY
|