Package org.jfree.chart.axis

Examples of org.jfree.chart.axis.ValueAxis.pan()


                continue;
            }
            if (isRangePannable() || subplot.isRangePannable()) {
                for (int i = 0; i < subplot.getRangeAxisCount(); i++) {
                    ValueAxis rangeAxis = subplot.getRangeAxis(i);
                    rangeAxis.pan(panRange);
                }
            }
        }
    }
View Full Code Here


                continue;
            }
            if (axis.isInverted()) {
                percent = -percent;
            }
            axis.pan(percent);
        }
    }

    /**
     * Pans the range axes by the specified percentage.
View Full Code Here

                continue;
            }
            if (axis.isInverted()) {
                percent = -percent;
            }
            axis.pan(percent);
        }
    }

    /**
     * Multiplies the range on the domain axis/axes by the specified factor.
View Full Code Here

                continue;
            }
            if (isDomainPannable() || subplot.isDomainPannable()) {
                for (int i = 0; i < subplot.getDomainAxisCount(); i++) {
                    ValueAxis domainAxis = subplot.getDomainAxis(i);
                    domainAxis.pan(panRange);
                }
            }
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.