本文整理汇总了Java中net.sf.jasperreports.charts.type.PlotOrientationEnum.HORIZONTAL属性的典型用法代码示例。如果您正苦于以下问题:Java PlotOrientationEnum.HORIZONTAL属性的具体用法?Java PlotOrientationEnum.HORIZONTAL怎么用?Java PlotOrientationEnum.HORIZONTAL使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类net.sf.jasperreports.charts.type.PlotOrientationEnum
的用法示例。
在下文中一共展示了PlotOrientationEnum.HORIZONTAL属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPropertyValue
public Object getPropertyValue(Object id) {
JRBaseChartPlot jrElement = (JRBaseChartPlot) getValue();
if (id.equals(JRBaseChartPlot.PROPERTY_BACKCOLOR))
return Colors.getSWTRGB4AWTGBColor(jrElement.getOwnBackcolor());
if (id.equals(JRBaseChartPlot.PROPERTY_BACKGROUND_ALPHA))
return jrElement.getBackgroundAlphaFloat();
if (id.equals(JRBaseChartPlot.PROPERTY_FOREGROUND_ALPHA))
return jrElement.getForegroundAlphaFloat();
if (id.equals(JRBaseChartPlot.PROPERTY_ORIENTATION)) {
if (jrElement.getOrientationValue() == null)
return 0;
if (jrElement.getOrientationValue() == PlotOrientationEnum.HORIZONTAL)
return 1;
else
return 2;
}
if (id.equals(JRBaseChartPlot.PROPERTY_SERIES_COLORS))
return jrElement.getSeriesColors();
return null;
}
示例2: chartPlotOrientation
protected static PlotOrientationEnum chartPlotOrientation(Orientation orientation) {
switch (orientation) {
case HORIZONTAL:
return PlotOrientationEnum.HORIZONTAL;
case VERTICAL:
return PlotOrientationEnum.VERTICAL;
default:
throw new JasperDesignException("Chart plot orientation " + orientation.name() + " not supported");
}
}