Domanda

Sto cercando di nascondere la jfreechart PieChart3D per nascondere le etichette. Non riesco a trovare nulla nella documentazione.

Qualcuno sa come farlo?

<% response.setContentType("image/png"); %><%@page import="org.jfree.data.general.*"%><%@page import="org.jfree.chart.*"%><%@page import="org.jfree.chart.plot.*"%><%@page import="java.awt.Color" %><%

            DefaultPieDataset ds = (DefaultPieDataset)session.getAttribute("usagePieOutputDataset");

            JFreeChart chart = ChartFactory.createPieChart3D
            (
                null,   // Title
                ds,     // Dataset
                false,  // Show legend
                false,  // Use tooltips
                false   // Configure chart to generate URLs?
            );

            chart.setBackgroundPaint(Color.WHITE);
            chart.setBorderVisible(false);

            PiePlot3D plot = ( PiePlot3D )chart.getPlot();
            plot.setDepthFactor(0.0);
            plot.setLabelOutlinePaint(Color.LIGHT_GRAY);
            plot.setLabelFont(new java.awt.Font("Arial",  java.awt.Font.BOLD, 10));


            ChartUtilities.writeChartAsPNG(response.getOutputStream(), chart, 150, 144);
    %>

http: //www.jfree .org / JFreeChart / api / javadoc / org / jfree / grafico / diagramma / PiePlot3D.html

È stato utile?

Soluzione

Questo nasconderà tutte le etichette:

plot.setLabelGenerator(null); //null means no labels

Altri suggerimenti

In realtà questo sembra essere un modo ancora più semplice e anche molto più breve.

Fai tu stesso la distribuzione delle etichette (implementazione anonima) e fai finta che non ci siano etichette da mostrare restituendo uno zero in getItemCount () .

plot.setLabelDistributor(new AbstractPieLabelDistributor() {
    public int getItemCount() { return 0; }
    public void distributeLabels(double minY,double height) {}
});

Vecchia soluzione:

Non so se esiste un modo più semplice ma dovrebbe funzionare. Dovrebbe essere autoesplicativo. Non mostrare i collegamenti impostare alcuni colori trasparenti e non generare etichette. Altrimenti basta chiedere.

Color transparent = new Color(0.0f,0.0f,0.0f,0.0f);
plot.setLabelLinksVisible(Boolean.FALSE);
plot.setLabelOutlinePaint(transparent);
plot.setLabelBackgroundPaint(transparent);
plot.setLabelShadowPaint(transparent);
plot.setLabelGenerator(new PieSectionLabelGenerator(){
    @Override
    public AttributedString generateAttributedSectionLabel(PieDataset dataset, Comparable key) {
        return new AttributedString("");
    }
    @Override
    public String generateSectionLabel(PieDataset dataset, Comparable key) {
        return "";
    }
});

Questo lavoro per me:

NumberAxis rangeAxis = (NumberAxis) plot.getRangeAxis();
rangeAxis.setTickLabelsVisible(false);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top