Modifier and Type | Interface and Description |
---|---|
static class |
PlotTilemapConnectorsOptions.Type |
Modifier and Type | Method and Description |
---|---|
String |
getDashStyle()
(Gantt) Set the default dash style for this chart's connecting lines.
|
PlotTilemapConnectorsEndMarkerOptions |
getEndMarker()
(Gantt) Marker options specific to the end markers for this chart's
Pathfinder connectors.
|
String |
getLineColor()
(Gantt) Set the default color for this chart's Pathfinder connecting
lines.
|
double |
getLineWidth()
(Gantt) Set the default pixel width for this chart's Pathfinder
connecting lines.
|
PlotTilemapConnectorsMarkerOptions |
getMarker()
(Gantt) Marker options for this chart's Pathfinder connectors.
|
PlotTilemapConnectorsStartMarkerOptions |
getStartMarker()
(Gantt) Marker options specific to the start markers for this chart's
Pathfinder connectors.
|
PlotTilemapConnectorsOptions.Type |
getType()
(Gantt) Set the default pathfinder algorithm to use for this chart.
|
void |
setDashStyle(String value)
(Gantt) Set the default dash style for this chart's connecting lines.
|
void |
setEndMarker(PlotTilemapConnectorsEndMarkerOptions value)
(Gantt) Marker options specific to the end markers for this chart's
Pathfinder connectors.
|
void |
setLineColor(String value)
(Gantt) Set the default color for this chart's Pathfinder connecting
lines.
|
void |
setLineWidth(double value)
(Gantt) Set the default pixel width for this chart's Pathfinder
connecting lines.
|
void |
setMarker(PlotTilemapConnectorsMarkerOptions value)
(Gantt) Marker options for this chart's Pathfinder connectors.
|
void |
setStartMarker(PlotTilemapConnectorsStartMarkerOptions value)
(Gantt) Marker options specific to the start markers for this chart's
Pathfinder connectors.
|
void |
setType(PlotTilemapConnectorsOptions.Type value)
(Gantt) Set the default pathfinder algorithm to use for this chart.
|
@Nullable String getDashStyle()
void setDashStyle(String value)
@Nullable PlotTilemapConnectorsEndMarkerOptions getEndMarker()
void setEndMarker(PlotTilemapConnectorsEndMarkerOptions value)
@Nullable String getLineColor()
void setLineColor(String value)
double getLineWidth()
void setLineWidth(double value)
@Nullable PlotTilemapConnectorsMarkerOptions getMarker()
startMarker
and endMarker
options.void setMarker(PlotTilemapConnectorsMarkerOptions value)
startMarker
and endMarker
options.@Nullable PlotTilemapConnectorsStartMarkerOptions getStartMarker()
void setStartMarker(PlotTilemapConnectorsStartMarkerOptions value)
@Nullable PlotTilemapConnectorsOptions.Type getType()
straight
: Draws a straight line between the connecting points. Does not
avoid other points when drawing.
simpleConnect
: Finds a path between the points using right angles only.
Takes only starting/ending points into account, and will not avoid other
points.
fastAvoid
: Finds a path between the points using right angles only.
Will attempt to avoid other points, but its focus is performance over
accuracy. Works well with less dense datasets.
Default value: straight
is used as default for most series types, while
simpleConnect
is used as default for Gantt series, to show dependencies
between points.void setType(PlotTilemapConnectorsOptions.Type value)
straight
: Draws a straight line between the connecting points. Does not
avoid other points when drawing.
simpleConnect
: Finds a path between the points using right angles only.
Takes only starting/ending points into account, and will not avoid other
points.
fastAvoid
: Finds a path between the points using right angles only.
Will attempt to avoid other points, but its focus is performance over
accuracy. Works well with less dense datasets.
Default value: straight
is used as default for most series types, while
simpleConnect
is used as default for Gantt series, to show dependencies
between points.Copyright © 2020. All rights reserved.