You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a start it would be helpful to modify the way the Helper function works by making the counter display in Helper drawRadialTickMarks configurable e.g. separating the String.format ... function in
If the helper would now be non-static by initializing it with new Helper() and calling drawRadialTickMarks it would be possible to exchange the Helper at runtime.
The text was updated successfully, but these errors were encountered:
I'd like to get a Windrose-like display:
see https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Brosen_windrose.svg/600px-Brosen_windrose.svg.png
For a start it would be helpful to modify the way the Helper function works by making the counter display in Helper drawRadialTickMarks configurable e.g. separating the String.format ... function in
to:
public String getTextForCounter(Locale locale,
String tickLabelFormatString, Double counter) {
String result=String.format(locale,tickLabelFormatString,counter);
return result;
}
If the helper would now be non-static by initializing it with new Helper() and calling drawRadialTickMarks it would be possible to exchange the Helper at runtime.
The text was updated successfully, but these errors were encountered: