Hello - The spec for one of our views shows a graph with dashed lines for thresholds. I'm doing the following to draw a solid line:
dc.setColor(Graphics.COLOR_RED, Graphics.COLOR_TRANSPARENT);
dc.setPenWidth(2);
dc.drawLine(hiThresholdX1, hiThresholdY, hiThresholdX2, hiThresholdY);
I grepped all the samples for anything related to setting the Pen Style to dashed rather than solid with no luck. Also, scanned the APIs but again no luck.
I can draw many short lines along the vector to create a dashed line appearance but wonder if I'm missing something that is readily available.
Any insights are most welcome. Thanks, Matthew