CombinedDomainXYPlot no cambia la escala del eje del dominio
Cuando oculto el número de series de un gráfico que utiliza un CombinedDomainXYPlot, todos los ejes de rango se reescalan automáticamente de forma agradable. Sin embargo, el eje del dominio no cambia de escala. ¿Hay alguna forma de actualizar manualmente el escalado, o tal vez me falta una configuración para habilitar el escalado automático de un eje de dominio en esta configuración?
CombinedDomainXYPlot
establece el máximo combinado Range
para su eje de dominio compartido en getDataRange()
. Esto es necesario para permitir que se comparta el eje. Cambiar la visibilidad de una serie no tiene ningún efecto en el eje del dominio compartido; cambiar las Dataset
actualizaciones del eje del dominio compartido a través de su configure()
método. En cualquier caso, los ejes de rango de las subtramas se pueden actualizar de forma independiente.
El siguiente ejemplo permite actualizar una trama secundaria o cambiar la visibilidad de una serie de forma independiente. Continúe configure()
para ver el efecto. Su sugerencia de alternar setAutoRange ()
se puede reemplazar con una sola llamada a configure()
; pero el efecto debería ser nulo, ya que los datos y su máximo combinado Range
no cambian.
mainPlot.getDomainAxis().configure();
Para actualizar automáticamente el eje del dominio compartido, utilice addSeries()
o removeSeries()
en lugar de setSeriesVisible()
.
Además, no descuide los subprocesos iniciales y pack()
.
import java.awt.*;
import java.awt.event.ActionEvent;
import java.util.Random;
import javax.swing.*;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.plot.CombinedDomainXYPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.xy.StandardXYItemRenderer;
import static org.jfree.chart.renderer.xy.StandardXYItemRenderer.*;
import org.jfree.chart.renderer.xy.XYItemRenderer;
import org.jfree.data.xy.XYSeries;
import org.jfree.data.xy.XYSeriesCollection;
/**
* @see https://stackoverflow.com/a/64508866/230513
* @see https://stackoverflow.com/q/11870416/230513
*/
public class CombinedPlot {
private static final int MAX = 3;
private static final Random RND = new Random();
public static void main(String[] args) {
EventQueue.invokeLater(CombinedPlot::init);
}
private static void init() {
XYItemRenderer renderer = new StandardXYItemRenderer(SHAPES_AND_LINES);
XYPlot plot1 = new XYPlot(
generateData(), null, new NumberAxis("Range 1"), renderer);
XYPlot plot2 = new XYPlot(
generateData(), null, new NumberAxis("Range 2"), renderer);
final CombinedDomainXYPlot plot =
new CombinedDomainXYPlot(new NumberAxis("Domain"));
plot.setDomainPannable(true);
plot.setRangePannable(true);
plot.add(plot1);
plot.add(plot2);
plot.setOrientation(PlotOrientation.VERTICAL);
JFreeChart chart = new JFreeChart(
"Combined Plots", JFreeChart.DEFAULT_TITLE_FONT, plot, true);
ChartPanel chartPanel = new ChartPanel(chart);
chartPanel.setPreferredSize(new Dimension(800, 500));
JPanel controlPanel = new JPanel();
controlPanel.add(new JButton(new UpdateAction(plot, 0)));
controlPanel.add(new JButton(new UpdateAction(plot, 1)));
for (int i = 0; i < MAX; i++) {
JCheckBox jcb = new JCheckBox(new VisibleAction(renderer, i));
jcb.setSelected(true);
renderer.setSeriesVisible(i, true);
controlPanel.add(jcb);
}
JFrame frame = new JFrame("Combined Plot Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(chartPanel, BorderLayout.CENTER);
frame.add(controlPanel, BorderLayout.SOUTH);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private static class UpdateAction extends AbstractAction {
private final XYPlot plot;
public UpdateAction(CombinedDomainXYPlot plot, int i) {
super("Update plot " + (i + 1));
this.plot = (XYPlot) plot.getSubplots().get(i);
}
@Override
public void actionPerformed(ActionEvent e) {
plot.setDataset(CombinedPlot.generateData());
}
}
private static class VisibleAction extends AbstractAction {
private XYItemRenderer renderer;
private int i;
public VisibleAction(XYItemRenderer renderer, int i) {
super("Series " + (i + 1));
this.renderer = renderer;
this.i = i;
}
@Override
public void actionPerformed(ActionEvent e) {
renderer.setSeriesVisible(i, !renderer.getSeriesVisible(i));
}
}
private static XYSeriesCollection generateData() {
XYSeriesCollection data = new XYSeriesCollection();
for (int i = 0; i < MAX; i++) {
data.addSeries(generateSeries("Series " + (i + 1)));
}
return data;
}
private static XYSeries generateSeries(String key) {
XYSeries series = new XYSeries(key);
for (int i = 0; i < 16; i++) {
series.add(RND.nextGaussian(), RND.nextGaussian());
}
return series;
}
}
RESPONDIENDO MI PROPIA PREGUNTA:
Logré actualizar el eje usando un pequeño truco:
mainPlot.getDomainAxis().setAutoRange(false);
mainPlot.getDomainAxis().setAutoRange(true);
No es bonito pero funciona. Sin embargo, desearía que alguien pudiera publicar una solución mejor...
Aquí está el código que utiliza un conjunto de datos no personalizado que no funciona. Ejecútelo y luego haga clic en un botón grande llamado hacer clic varias veces para ocultar algunas series. El eje del dominio no se cambia de escala.
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.List;
import java.util.Random;
import javax.swing.*;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.DateAxis;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.event.ChartChangeEvent;
import org.jfree.chart.event.ChartChangeListener;
import org.jfree.chart.plot.CombinedDomainXYPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.xy.StandardXYItemRenderer;
import org.jfree.chart.renderer.xy.XYItemRenderer;
import org.jfree.data.xy.XYSeries;
import org.jfree.data.xy.XYSeriesCollection;
import org.jfree.ui.RectangleEdge;
public class Runner {
private static Random rand = new Random();
public static void main(String[] args) {
XYSeriesCollection data = new XYSeriesCollection();
int max = rand.nextInt(2) + 2;
for (int i = 0; i < max; i++) {
data.addSeries(generateSeries("Series" + (i + 1)));
}
final XYItemRenderer renderer1 = new StandardXYItemRenderer();
final XYPlot plot1 = new XYPlot(data, null, new DateAxis("Dates"), renderer1);
data = new XYSeriesCollection();
for (int i = 0; i < max; i++) {
data.addSeries(generateSeries("Series" + (i + 1)));
}
final XYPlot plot2 = new XYPlot(data, null, new NumberAxis("Numbers"), renderer1);
final CombinedDomainXYPlot plot = new CombinedDomainXYPlot(new NumberAxis("Domain"));
plot.setGap(10.0);
// add the subplots...
plot.add(plot1, 1);
plot.add(plot2, 1);
plot.setOrientation(PlotOrientation.VERTICAL);
// return a new chart containing the overlaid plot...
final JFreeChart chart = new JFreeChart("CombinedDomainXYPlot Demo",
JFreeChart.DEFAULT_TITLE_FONT, plot, true);
chart.getLegend().setPosition(RectangleEdge.RIGHT);
chart.addChangeListener(new ChartChangeListener() {
boolean changed = false;
@Override
public void chartChanged(ChartChangeEvent event) {
if (!changed) {
} else {
changed = false;
}
}
});
ChartPanel panel = new ChartPanel(chart);
JPanel panel2 = new JPanel(new BorderLayout(0, 10));
panel2.add(panel, BorderLayout.CENTER);
JButton b = new JButton("Click");
b.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
CombinedDomainXYPlot plot = (CombinedDomainXYPlot) chart.getXYPlot();
List l = plot.getSubplots();
int index = rand.nextInt(plot1.getSeriesCount() + plot2.getSeriesCount());
boolean b = renderer1.isSeriesVisible(index);
renderer1.setSeriesVisible(index, false);
}
});
panel2.add(b, BorderLayout.NORTH);
panel2.setVisible(true);
JFrame frame = new JFrame("dsadsa");
frame.add(panel2);
frame.setSize(800, 600);
frame.setVisible(true);
}
private static XYSeries generateSeries(String key) {
XYSeries series = new XYSeries(key);
int points = 15;
double val = 0.0;
double x = 0.0;
for (int i = 0; i < points; i++) {
val += rand.nextDouble() * 6 - 3;
x += rand.nextDouble() * 4;
series.add(x, val);
}
return series;
}
}