Как установить единицы тика на оси домена после получения его от оси диапазона в jfreechart в Java? - PullRequest
2 голосов
/ 05 апреля 2019

Я немного новичок в Java.

Сейчас я пытаюсь построить график XYPlot, используя JFreeChart, где ось домена (ось X) и ось диапазона (ось Y) содержат одинаковый диапазон. Но, к сожалению, тиковые единицы разные! По этой причине я попытался использовать NumberAxis для установки диапазона и единиц измерения на оси домена на основе диапазона и единиц измерения от оси диапазона. Но все равно разница остается. Я до сих пор не могу понять, почему это происходит.

Я прилагаю код для этой графики. Также я прилагаю скриншоты проблемы и что я действительно хочу! Пожалуйста, объясните мне, что я делаю здесь не так ...

    XYSeriesCollection lineChartDataAD = new XYSeriesCollection();

    XYSeries seriesAD = new XYSeries("Real Surface Heights", false, true);

    for (int m = 0; m < pt.delayedy.length - 1; m++) {

        seriesAD.add((double)pt.delayedy[m], (double)pt.delayedy[m+1]);

    }

    lineChartDataAD.addSeries(seriesAD);               

    if (jRadioButton10.isSelected()) { //as it is       checkbox2.getState() == true
        pt.xaxisAD = pt.yvar+" ("+pt.xvar+") ["+pt.yunit+"]";
        pt.yaxisADsupport = String.format("%f", (pt.xspace*pt.delay));
        //pt.yaxisAD = pt.yvar +" (i+"+pt.yaxisADsupport+")";
        pt.yaxisAD = pt.yvar+" ("+pt.xvar+"+d) ["+pt.yunit+"]";
        jLabel44.setText("(Delay (d) = "+pt.yaxisADsupport+" "+pt.xunit+")");
    }
    else if (jRadioButton11.isSelected()) { //as time series  checkbox1.getState() == true
        //pt.yaxisAD = pt.yvar +" (i+"+pt.delay+")";
        pt.xaxisAD = pt.yvar+" (i) ["+pt.yunit+"]";
        pt.yaxisAD = pt.yvar +" (i+d) ["+pt.yunit+"]";
        jLabel44.setText("(Delay (d) = "+pt.delay+")");
    }


    JFreeChart lineChartAD = ChartFactory.createXYLineChart("", pt.xaxisAD, pt.yaxisAD, (XYDataset) lineChartDataAD, PlotOrientation.VERTICAL, false, false, false);

    XYPlot plotAD  = lineChartAD.getXYPlot();

    NumberAxis D = (NumberAxis) plotAD.getDomainAxis();
    NumberAxis R = (NumberAxis) plotAD.getRangeAxis();

    D.setRange(R.getRange());
    D.setTickUnit(R.getTickUnit());                

    XYLineAndShapeRenderer rendererAD = new XYLineAndShapeRenderer();

    rendererAD.setSeriesPaint(0, Color.BLACK);
    double sizeAD = 0;
    double deltaAD = sizeAD / 2.0;
    Shape shapeAD = new Rectangle2D.Double(-deltaAD, -deltaAD, sizeAD, sizeAD);
    rendererAD.setSeriesShape(0, shapeAD);
    rendererAD.setSeriesStroke(0, new BasicStroke(1.0f));

    Font F1AD = new Font ("Times New Roman", Font.PLAIN, 14);

    plotAD.getDomainAxis().setLabelFont(F1AD);
    plotAD.getRangeAxis().setLabelFont(F1AD);

    plotAD.setOutlinePaint(Color.BLACK);
    plotAD.setOutlineStroke(new BasicStroke(0.5f));
    plotAD.setRenderer(rendererAD);
    plotAD.setBackgroundPaint(Color.WHITE);
    plotAD.setRangeGridlinesVisible(true);
    plotAD.setRangeGridlinePaint(Color.GRAY);
    plotAD.setDomainGridlinesVisible(true);
    plotAD.setDomainGridlinePaint(Color.GRAY);

    ChartPanel linePanelAD = new ChartPanel(lineChartAD, true, true, false, false, true); //Properties, save, print, zoom in pop-up menu, and tooltip
    linePanelAD.setMouseZoomable(false);
    panelChartRMA4D.removeAll();
    panelChartRMA4D.add(linePanelAD, BorderLayout.CENTER);
    panelChartRMA4D.setVisible(true);
    panelChartRMA4D.setBorder(new LineBorder (Color.BLACK));
    panelChartRMA4D.validate();

Скриншот проблемы || Тик-единицы разные

Снимок экрана с желаемым результатом || Тик-единицы одинаковы на обеих осях

1 Ответ

0 голосов
/ 08 апреля 2019

Наконец-то у меня есть обходное решение этой проблемы! В то время как я пока не знаю точного решения этой проблемы.

Вместо того, чтобы пытаться использовать следующие строки кода,

NumberAxis D = (NumberAxis) plotAD.getDomainAxis(); 
NumberAxis R = (NumberAxis) plotAD.getRangeAxis(); 
D.setRange(R.getRange()); 
D.setTickUnit(R.getTickUnit());

Я попробовал следующие строки кода:

//getting the number axes from the plot

NumberAxis D = (NumberAxis) plotAD.getDomainAxis();
NumberAxis R = (NumberAxis) plotAD.getRangeAxis();

//creating custom tick units based on lower and upper bound

Double DT = (D.getUpperBound() - D.getLowerBound())/5;
DecimalFormat DF = new DecimalFormat("#.#");
DF.setRoundingMode(RoundingMode.FLOOR);
String DTS = DF.format(DT);
DT = Double.parseDouble(DTS);
D.setTickUnit(new NumberTickUnit(DT));
Double RT = (R.getUpperBound() - R.getLowerBound())/5;
String RTS = DF.format(RT);
RT = Double.parseDouble(RTS);
R.setTickUnit(new NumberTickUnit(RT));

И это работает !!! Посмотрите на скриншот ниже, который я и хотел, одинаковые тики в обеих осях ...

Final Result as Expected!

Полный код для такого рода графиков также приведен ниже (может быть, он увеличивает некоторые строки кода, но я рад, что он работает для любых случаев, пока я не получу точное решение этой проблемы):

//Creating XYseries based on an array (i.e., pt.delayedy)

XYSeriesCollection lineChartDataAD = new XYSeriesCollection();
XYSeries seriesAD = new XYSeries("Real Surface Heights", false, true);

for (int m = 0; m < pt.delayedy.length - 1; m++) {            
    seriesAD.add((double)pt.delayedy[m], (double)pt.delayedy[m+1]);
}

lineChartDataAD.addSeries(seriesAD);

//Customizing my axis labels (required for my purpose)

if (jRadioButton10.isSelected()) {
   pt.xaxisAD = pt.yvar+" ("+pt.xvar+") ["+pt.yunit+"]";
   pt.yaxisADsupport = String.format("%f", (pt.xspace*pt.delay));            
   pt.yaxisAD = pt.yvar+" ("+pt.xvar+"+d) ["+pt.yunit+"]";      
}
else if (jRadioButton11.isSelected()) {            
   pt.xaxisAD = pt.yvar+" (i) ["+pt.yunit+"]";
   pt.yaxisAD = pt.yvar +" (i+d) ["+pt.yunit+"]";
   jLabel44.setText("(Delay (d) = "+pt.delay+")");
}

//Creating a JFreechart with my labels and series

JFreeChart lineChartAD = ChartFactory.createXYLineChart("", pt.xaxisAD, pt.yaxisAD, (XYDataset) lineChartDataAD, PlotOrientation.VERTICAL, false, false, false);

//Getting the chart plot

XYPlot plotAD  = lineChartAD.getXYPlot();

//Creating the renderer for the chart

XYLineAndShapeRenderer rendererAD = new XYLineAndShapeRenderer();
rendererAD.setSeriesPaint(0, Color.BLACK);
double sizeAD = 0;
double deltaAD = sizeAD / 2.0;
Shape shapeAD = new Rectangle2D.Double(-deltaAD, -deltaAD, sizeAD, sizeAD);
rendererAD.setSeriesShape(0, shapeAD);
rendererAD.setSeriesStroke(0, new BasicStroke(1.0f));

//Customizing the font of the axes labels

Font F1AD = new Font ("Times New Roman", Font.PLAIN, 14);        
plotAD.getDomainAxis().setLabelFont(F1AD);
plotAD.getRangeAxis().setLabelFont(F1AD);

//The below lines are for exact same x-scaling and y-scaling in plot

NumberAxis D = (NumberAxis) plotAD.getDomainAxis();
NumberAxis R = (NumberAxis) plotAD.getRangeAxis();
D.setAutoRangeIncludesZero(false);
R.setAutoRangeIncludesZero(false);
Double DT = (D.getUpperBound() - D.getLowerBound())/5;
DecimalFormat DF = new DecimalFormat("#.#");
DF.setRoundingMode(RoundingMode.FLOOR);
String DTS = DF.format(DT);
DT = Double.parseDouble(DTS);
D.setTickUnit(new NumberTickUnit(DT));
Double RT = (R.getUpperBound() - R.getLowerBound())/5;
String RTS = DF.format(RT);
RT = Double.parseDouble(RTS);
R.setTickUnit(new NumberTickUnit(RT));

//Plot customization

plotAD.setOutlinePaint(Color.BLACK);
plotAD.setOutlineStroke(new BasicStroke(0.5f));
plotAD.setRenderer(rendererAD);
plotAD.setBackgroundPaint(Color.WHITE);
plotAD.setRangeGridlinesVisible(true);
plotAD.setRangeGridlinePaint(Color.GRAY);
plotAD.setDomainGridlinesVisible(true);
plotAD.setDomainGridlinePaint(Color.GRAY);

//Creating ChartPanel

ChartPanel linePanelAD = new ChartPanel(lineChartAD, true, true, false, false, true);
linePanelAD.setMouseZoomable(false);

//Adding the ChartPanel to the JPanel 

panelChartRMA4D.removeAll();
panelChartRMA4D.add(linePanelAD, BorderLayout.CENTER);
panelChartRMA4D.setVisible(true);
panelChartRMA4D.setBorder(new LineBorder (Color.BLACK));
panelChartRMA4D.validate();
...