Uses of Class
org.jfree.chart.plot.PlotOrientation
| Package | Description |
|---|---|
| de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent | |
| org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel. |
| org.jfree.chart.plot |
Plot classes and related interfaces.
|
-
Uses of PlotOrientation in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent
Fields in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent declared as PlotOrientation Modifier and Type Field Description PlotOrientationChartOptions. orientationConstructors in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.ipk_graffitiview.chartDrawComponent with parameters of type PlotOrientation Constructor Description ChartOptions(GraphElement ge, Graph graph, BioStatisticalCategoryDataset dataset, String chartTitle, PlotOrientation orientation, boolean showLegend, String domainAxis, String rangeAxis, boolean showRangeAxis, boolean showCategoryAxis, float outlineBorderWidth, int axisRotation, double lowerBound, double upperBound, boolean showGridRange, boolean showGridCategory, double gridWidth, double axisWidth, Color gridColor, Color axisColor, int axisFontSize, boolean showStdDevAsT, double stdDevTopWidth, boolean showStdDevAsFillRange, float shapeSize, float stdDevLineWidth, boolean showOnlyHalfErrorBar, boolean showShapes, boolean showLines, boolean usePieScaling, boolean connectPriorItems, int plotAxisSteps, boolean useLogYscale, int cpIdxA, int cpIdxC, Color cpColA, Color cpColBackground, Color cpColC, boolean useCustomRangeSteps, double customRangeSteps, boolean removeEmptyConditions)MyColorGrid(Color[][] colors, PlotOrientation plotOrientation) -
Uses of PlotOrientation in org.jfree.chart
Methods in org.jfree.chart with parameters of type PlotOrientation Modifier and Type Method Description static JFreeChartChartFactory. createAreaChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates an area chart with default settings.static JFreeChartChartFactory. createAreaXYChart(String title, String xAxisLabel, String yAxisLabel, XYDataset data, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Deprecated.Use createXYAreaChart(...).static JFreeChartChartFactory. createBarChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a bar chart.static JFreeChartChartFactory. createBarChart3D(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a bar chart with a 3D effect.static JFreeChartChartFactory. createBubbleChart(String title, String xAxisLabel, String yAxisLabel, XYZDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a bubble chart with default settings.static JFreeChartChartFactory. createHistogram(String title, String xAxisLabel, String yAxisLabel, IntervalXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a histogram chart.static JFreeChartChartFactory. createLineChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a line chart with default settings.static JFreeChartChartFactory. createLineXYChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Deprecated.Use createXYLineChart(...).static JFreeChartChartFactory. createScatterPlot(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a scatter plot with default settings.static JFreeChartChartFactory. createStackedAreaChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stacked area chart with default settings.static JFreeChartChartFactory. createStackedAreaXYChart(String title, String xAxisLabel, String yAxisLabel, TableXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Deprecated.Method renamed - use createStackedXYAreaChart().static JFreeChartChartFactory. createStackedBarChart(String title, String domainAxisLabel, String rangeAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stacked bar chart with default settings.static JFreeChartChartFactory. createStackedBarChart3D(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stacked bar chart with a 3D effect and default settings.static JFreeChartChartFactory. createStackedXYAreaChart(String title, String xAxisLabel, String yAxisLabel, TableXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stacked XY area plot.static JFreeChartChartFactory. createWaferMapChart(String title, WaferMapDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a wafer map chart.static JFreeChartChartFactory. createWaterfallChart(String title, String categoryAxisLabel, String valueAxisLabel, CategoryDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a waterfall chart.static JFreeChartChartFactory. createXYAreaChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates an area chart using anXYDataset.static JFreeChartChartFactory. createXYBarChart(String title, String xAxisLabel, boolean dateAxis, String yAxisLabel, IntervalXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates and returns a default instance of an XY bar chart.static JFreeChartChartFactory. createXYBarChart(String title, String xAxisLabel, String yAxisLabel, IntervalXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Deprecated.Use createXYBarChart() method with additional parameter.static JFreeChartChartFactory. createXYLineChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a line chart (based on anXYDataset) with default settings.static JFreeChartChartFactory. createXYStepAreaChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a filled stepped XY plot with default settings.static JFreeChartChartFactory. createXYStepChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)Creates a stepped XY plot with default settings. -
Uses of PlotOrientation in org.jfree.chart.plot
Fields in org.jfree.chart.plot declared as PlotOrientation Modifier and Type Field Description static PlotOrientationPlotOrientation. HORIZONTALFor a plot where the range axis is horizontal.static PlotOrientationPlotOrientation. VERTICALFor a plot where the range axis is vertical.Methods in org.jfree.chart.plot that return PlotOrientation Modifier and Type Method Description PlotOrientationCategoryPlot. getOrientation()Returns the orientation of the plot.PlotOrientationXYPlot. getOrientation()Returns the orientation of the plot.Methods in org.jfree.chart.plot with parameters of type PlotOrientation Modifier and Type Method Description static org.jfree.ui.RectangleEdgePlot. resolveDomainAxisLocation(AxisLocation location, PlotOrientation orientation)Resolves a domain axis location for a given plot orientation.static org.jfree.ui.RectangleEdgePlot. resolveRangeAxisLocation(AxisLocation location, PlotOrientation orientation)Resolves a range axis location for a given plot orientation.voidCategoryPlot. setOrientation(PlotOrientation orientation)Sets the orientation for the plot and sends aPlotChangeEventto all registered listeners.voidCombinedDomainCategoryPlot. setOrientation(PlotOrientation orientation)Sets the orientation of the plot (and all subplots).voidCombinedDomainXYPlot. setOrientation(PlotOrientation orientation)Sets the orientation for the plot (also changes the orientation for all the subplots to match).voidCombinedRangeCategoryPlot. setOrientation(PlotOrientation orientation)Sets the orientation for the plot (and all the subplots).voidCombinedRangeXYPlot. setOrientation(PlotOrientation orientation)Sets the orientation for the plot (and all its subplots).voidXYPlot. setOrientation(PlotOrientation orientation)Sets the orientation for the plot.voidCrosshairState. updateCrosshairPoint(double x, double y, double transX, double transY, PlotOrientation orientation)Evaluates a data point and if it is the closest to the anchor point it becomes the new crosshair point.