当前位置: 首页>>代码示例>>Java>>正文


Java JFreeChart.setAntiAlias方法代码示例

本文整理汇总了Java中org.jfree.chart.JFreeChart.setAntiAlias方法的典型用法代码示例。如果您正苦于以下问题:Java JFreeChart.setAntiAlias方法的具体用法?Java JFreeChart.setAntiAlias怎么用?Java JFreeChart.setAntiAlias使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jfree.chart.JFreeChart的用法示例。


在下文中一共展示了JFreeChart.setAntiAlias方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: updateChartProperties

import org.jfree.chart.JFreeChart; //导入方法依赖的package包/类
/**
 * Updates the properties of a chart to match the properties defined on the
 * panel.
 *
 * @param chart  the chart.
 */
public void updateChartProperties(JFreeChart chart) {

    this.titlePropertiesPanel.setTitleProperties(chart);
    this.legendPropertiesPanel.setLegendProperties(chart);
    this.plotPropertiesPanel.updatePlotProperties(chart.getPlot());

    chart.setAntiAlias(getAntiAlias());
    chart.setBackgroundPaint(getBackgroundPaint());
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:16,代码来源:ChartPropertyEditPanel.java

示例2: updateChart

import org.jfree.chart.JFreeChart; //导入方法依赖的package包/类
/**
 * Updates the properties of a chart to match the properties defined on the
 * panel.
 *
 * @param chart  the chart.
 */
public void updateChart(JFreeChart chart) {

    this.titleEditor.setTitleProperties(chart);
    this.plotEditor.updatePlotProperties(chart.getPlot());

    chart.setAntiAlias(getAntiAlias());
    chart.setBackgroundPaint(getBackgroundPaint());
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:15,代码来源:DefaultChartEditor.java

示例3: updateChartProperties

import org.jfree.chart.JFreeChart; //导入方法依赖的package包/类
/**
 * Updates the chart.
 * 
 * @param chart  the chart.
 */
public void updateChartProperties(JFreeChart chart) {
    chart.setAntiAlias(this.antialias.getSelection());
    chart.setBackgroundPaint(SWTUtils.toAwtColor(
            this.backgroundPaintCanvas.getColor()));        
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:11,代码来源:SWTOtherEditor.java


注:本文中的org.jfree.chart.JFreeChart.setAntiAlias方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。