drawMarkers method

void drawMarkers (List<double> markerIndices, List<String> markerLabels, List<Map<MarA, String>> markerAttrList)

Draws vertical lines above this polyline. markerIndices - the x positions of the lines (indices in the dpy's array. markerLabels - text labels drawn together with lines. If not null, the length of this array must be the same as that of markerIndices. markerAttrList - marker attributes. If null, MARKER_DEFAULT_ATTRIBUTES are used. Otherwise, the length of this array must be the same as that of markerIndices.

Implementation

void drawMarkers(List<double> markerIndices, List<String> markerLabels,
    List<Map<MarA, String>> markerAttrList) {
  MarkerLines(this)
      .drawPolylineMarkers(markerIndices, markerLabels, markerAttrList);
}