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