本文整理汇总了Java中org.jfree.chart.axis.Axis.setTickLabelsVisible方法的典型用法代码示例。如果您正苦于以下问题:Java Axis.setTickLabelsVisible方法的具体用法?Java Axis.setTickLabelsVisible怎么用?Java Axis.setTickLabelsVisible使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jfree.chart.axis.Axis
的用法示例。
在下文中一共展示了Axis.setTickLabelsVisible方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setAxisProperties
import org.jfree.chart.axis.Axis; //导入方法依赖的package包/类
/**
* Sets the properties of the specified axis to match the properties
* defined on this panel.
*
* @param axis the axis.
*/
public void setAxisProperties(Axis axis) {
axis.setLabel(getLabel());
axis.setLabelFont(getLabelFont());
axis.setLabelPaint(getLabelPaint());
axis.setTickMarksVisible(isTickMarksVisible());
// axis.setTickMarkStroke(getTickMarkStroke());
axis.setTickLabelsVisible(isTickLabelsVisible());
axis.setTickLabelFont(getTickLabelFont());
axis.setTickLabelPaint(getTickLabelPaint());
axis.setTickLabelInsets(getTickLabelInsets());
axis.setLabelInsets(getLabelInsets());
}
示例2: setAxisProperties
import org.jfree.chart.axis.Axis; //导入方法依赖的package包/类
/**
* Sets the properties of the specified axis to match
* the properties defined on this panel.
*
* @param axis the axis.
*/
public void setAxisProperties(Axis axis) {
axis.setLabel(getLabel());
axis.setLabelFont(getLabelFont());
axis.setLabelPaint(getLabelPaint());
axis.setTickMarksVisible(showTickMarksCheckBox.getSelection());
axis.setTickLabelsVisible(showTickLabelsCheckBox.getSelection());
axis.setTickLabelFont(getTickLabelFont());
axis.setTickLabelPaint(getTickLabelPaint());
}
示例3: setAxisProperties
import org.jfree.chart.axis.Axis; //导入方法依赖的package包/类
/**
* Sets the properties of the specified axis to match
* the properties defined on this panel.
*
* @param axis the axis.
*/
public void setAxisProperties(Axis axis) {
axis.setLabel(getLabel());
axis.setLabelFont(getLabelFont());
axis.setLabelPaint(getLabelPaint());
axis.setTickMarksVisible(this.showTickMarksCheckBox.getSelection());
axis.setTickLabelsVisible(this.showTickLabelsCheckBox.getSelection());
axis.setTickLabelFont(getTickLabelFont());
axis.setTickLabelPaint(getTickLabelPaint());
}
示例4: setAxis
import org.jfree.chart.axis.Axis; //导入方法依赖的package包/类
private void setAxis(Axis axis, Font font) {
if(axis!=null) {
axis.setLabelFont(font);
axis.setLabelPaint(foregroundcolor);
axis.setTickLabelFont(font);
axis.setTickLabelPaint(foregroundcolor);
axis.setTickLabelsVisible(true);
}
}
示例5: setAxisProperties
import org.jfree.chart.axis.Axis; //导入方法依赖的package包/类
/**
* Sets the properties of the specified axis to match the properties defined on this panel.
*
* @param axis
* the axis.
*/
public void setAxisProperties(final Axis axis) {
axis.setLabel(getLabel());
axis.setLabelFont(getLabelFont());
axis.setLabelPaint(getLabelPaint());
axis.setTickMarksVisible(this.showTickMarksCheckBox.getSelection());
axis.setTickLabelsVisible(this.showTickLabelsCheckBox.getSelection());
axis.setTickLabelFont(getTickLabelFont());
axis.setTickLabelPaint(getTickLabelPaint());
}