Modifier and Type | Interface and Description |
---|---|
static class |
PlotEmaConnectorsOptions.Type |
Modifier and Type | Method and Description |
---|---|
String |
getDashStyle()
(Gantt) Set the default dash style for this chart's connecting lines.
|
PlotEmaConnectorsEndMarkerOptions |
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.
|
PlotEmaConnectorsMarkerOptions |
getMarker()
(Gantt) Marker options for this chart's Pathfinder connectors.
|
PlotEmaConnectorsStartMarkerOptions |
getStartMarker()
(Gantt) Marker options specific to the start markers for this chart's
Pathfinder connectors.
|
PlotEmaConnectorsOptions.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(PlotEmaConnectorsEndMarkerOptions 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(PlotEmaConnectorsMarkerOptions value)
(Gantt) Marker options for this chart's Pathfinder connectors.
|
void |
setStartMarker(PlotEmaConnectorsStartMarkerOptions value)
(Gantt) Marker options specific to the start markers for this chart's
Pathfinder connectors.
|
void |
setType(PlotEmaConnectorsOptions.Type value)
(Gantt) Set the default pathfinder algorithm to use for this chart.
|
@Nullable String getDashStyle()
void setDashStyle(String value)
@Nullable PlotEmaConnectorsEndMarkerOptions getEndMarker()
void setEndMarker(PlotEmaConnectorsEndMarkerOptions value)
@Nullable String getLineColor()
void setLineColor(String value)
double getLineWidth()
void setLineWidth(double value)
@Nullable PlotEmaConnectorsMarkerOptions getMarker()
startMarker
and endMarker
options.void setMarker(PlotEmaConnectorsMarkerOptions value)
startMarker
and endMarker
options.@Nullable PlotEmaConnectorsStartMarkerOptions getStartMarker()
void setStartMarker(PlotEmaConnectorsStartMarkerOptions value)
@Nullable PlotEmaConnectorsOptions.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(PlotEmaConnectorsOptions.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.