Package com.googlecode.charts4j

Examples of com.googlecode.charts4j.ShapeMarker


            final String s;
            if (marker instanceof TextMarker) {
                final TextMarker m = (TextMarker) marker;
                s = "@" + (m.isFlagged() ? "f" : "t") + m.getText() + "," + m.getColor() + ",0," + xPos / Data.MAX_VALUE + ":" + yPos / Data.MAX_VALUE  + "," + m.getSize()  + "," + m.getPriority();
            } else if (marker instanceof ShapeMarker) {
                final ShapeMarker m = (ShapeMarker) marker;
                s = "@" + m.getShape().toString() + "," + m.getColor() + ",0," + xPos / Data.MAX_VALUE + ":" + yPos / Data.MAX_VALUE  + "," + m.getSize() + "," + m.getPriority();
            } else {
                s = "";
            }
            return s;
        }
View Full Code Here

TOP

Related Classes of com.googlecode.charts4j.ShapeMarker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.