How to represent double values as circles in a 2d matrix in java
Asked Answered
C

2

4

so I want to write a matrix explorer which enables me to reorder rows and columns of a matrix. For this porpouse I used the Jtable class. Now the problem that I have is that it is very difficult to reorder a matrix by looking at double values, so I would like to print the matrix not with the double values but with circles in which the radius of the circle represents the value. So that I can tell the difference between big values and small values quicker.

Anybody has any idea how I can turn this double values into filled circles with JTable or any table class for that matter?

Conjurer answered 14/5, 2010 at 10:43 Comment(0)
W
12

Here's an example of a custom renderer that implements the Icon interface to do the drawing. This approach permits easier control over the relative positioning of the text and icon. Note that the renderer scales based on the assumption of normalized values in the interval [0, 1); you may want to query your data model for the minimum and maximum values instead.

icon renderer

class DecRenderer extends DefaultTableCellRenderer implements Icon {

    private static final int SIZE = 32;
    private static final int HALF = SIZE / 2;
    DecimalFormat df;

    public DecRenderer(DecimalFormat df) {
        this.df = df;
        this.setIcon(this);
        this.setHorizontalAlignment(JLabel.RIGHT);
        this.setBackground(Color.lightGray);
    }

    @Override
    protected void setValue(Object value) {
        setText((value == null) ? "" : df.format(value));
    }

    @Override
    public void paintIcon(Component c, Graphics g, int x, int y) {
        Graphics2D g2d = (Graphics2D) g;
        g2d.setRenderingHint(
            RenderingHints.KEY_ANTIALIASING,
            RenderingHints.VALUE_ANTIALIAS_ON);
        g2d.setColor(Color.blue);
        double v = Double.valueOf(this.getText());
        int d = (int)(v * SIZE);
        int r = d / 2;
        g2d.fillOval(x + HALF - r, y + HALF - r, d, d);
    }

    @Override
    public int getIconWidth() {
        return SIZE;
    }

    @Override
    public int getIconHeight() {
        return SIZE;
    }
}
Whey answered 14/5, 2010 at 13:30 Comment(6)
that really goooood, phaaa +1Fledge
Cell Renderers, be it ListCellRenderer or TableCellRenderer, they all go over my head, LOL :-), still I do scratch my head, when it comes to these topics, though as I search and read more and more, it seems they are not something to be left behind, when it comes to Swing. Wonderful things one can do with them, in many aspects. I had seen this example a long time back, but then painting was a distant thing for me in Swing. Now will run through all your examples slowly slowly, learning many new things :-)Rub
@GagandeepBali: Such renderers and editors are examples of the flyweight pattern, an underlying concept I found helpful.Whey
This is one interesting thingy. Patterns are interesting too, seems like another thing in my ToDoList now :-)Rub
+1 just because this post made me aware of rendering hints. :-) Quite nice.Disc
See also this related example that varies brightness.Whey
E
3

You will have to write your custom Cell Renderer.

The component will be used as a rubber stamp; the paint method is called for each cell.

Draw the circle in the paint method;

g.fillOval(x - radius / 2, y - radius / 2, radius, radius);

Will draw a circle of radius with center point at (x,y).

Ejecta answered 14/5, 2010 at 10:51 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.