本文整理了Java中org.eclipse.scada.chart.YAxis
类的一些代码示例,展示了YAxis
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAxis
类的具体详情如下:
包路径:org.eclipse.scada.chart.YAxis
类名称:YAxis
暂无
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
@Override
public void process ( final YAxis axis )
{
final double maxValue = axis.translateToValue ( client.height, selection.y );
final double minValue = axis.translateToValue ( client.height, selection.y + selection.height );
axis.setMinMax ( minValue, maxValue );
}
} );
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart
public void setMax ( final double max )
{
firePropertyChange ( PROP_MAX, this.max, this.max = max );
}
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart
public void setMinMax ( final double min, final double max )
{
if ( min >= max )
{
return;
}
setMin ( min );
setMax ( max );
}
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
if ( this.axis == null || this.axis.getMax () - this.axis.getMin () <= 0 )
try
if ( this.axis.getLabel () != null && !this.axis.getLabel ().isEmpty () )
axisLabelSize = gc.textExtent ( this.axis.getLabel () );
final List<Entry<Double>> markers = Helper.chartValues ( this.axis.getMin (), this.axis.getMax (), height, fontHeight + this.labelSpacing );
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart
public void zoom ( final double factor )
{
final double diff = ( this.max - this.min ) * factor;
if ( factor > 1.0 )
{
setMinMax ( this.min - diff, this.max + diff );
}
else
{
setMinMax ( this.min + diff, this.max - diff );
}
}
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
public void setAxis ( final YAxis axis )
{
checkWidget ();
if ( this.axis != null )
{
this.axis.removePropertyChangeListener ( this.propertyChangeListener );
this.axis = null;
}
this.axis = axis;
if ( this.axis != null )
{
this.axis.addPropertyChangeListener ( this.propertyChangeListener );
}
relayoutParent ();
}
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
@Override
public void process ( final YAxis axis )
{
axis.transform ( diffY, rect.height );
}
} );
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
if ( this.axis == null || this.axis.getMax () - this.axis.getMin () <= 0 )
try
if ( this.axis.getLabel () != null && !this.axis.getLabel ().isEmpty () )
axisLabelSize = gc.textExtent ( this.axis.getLabel () );
final List<Entry<Double>> markers = Helper.chartValues ( this.axis.getMin (), this.axis.getMax (), height, fontHeight + this.labelSpacing );
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart
public void transform ( final double offset, final int clientHeight )
{
final double diff = this.max - this.min;
final double factor = diff / clientHeight;
final double clientOffset = offset * factor;
setMinMax ( this.min - clientOffset, this.max - clientOffset );
}
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
public void setAxis ( final YAxis axis )
{
checkWidget ();
if ( this.axis != null )
{
this.axis.removePropertyChangeListener ( this.propertyChangeListener );
this.axis = null;
}
this.axis = axis;
if ( this.axis != null )
{
this.axis.addPropertyChangeListener ( this.propertyChangeListener );
}
relayoutParent ();
}
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
@Override
public void process ( final YAxis axis )
{
axis.transform ( diffY, rect.height );
}
} );
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
markers = Helper.chartValues ( this.axis.getMin (), this.axis.getMax (), chartRect.height, fontHeight + this.labelSpacing );
for ( final Entry<Double> marker : markers )
final String label = this.axis.getLabel ();
if ( label != null )
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
@Override
public void process ( final YAxis axis )
{
final double maxValue = axis.translateToValue ( client.height, selection.y );
final double minValue = axis.translateToValue ( client.height, selection.y + selection.height );
axis.setMinMax ( minValue, maxValue );
}
} );
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart
public void zoom ( final double factor )
{
final double diff = ( this.max - this.min ) * factor;
if ( factor > 1.0 )
{
setMinMax ( this.min - diff, this.max + diff );
}
else
{
setMinMax ( this.min + diff, this.max - diff );
}
}
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart
public void setMinMax ( final double min, final double max )
{
if ( min >= max )
{
return;
}
setMin ( min );
setMax ( max );
}
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart
public void setMin ( final double min )
{
firePropertyChange ( PROP_MIN, this.min, this.min = min );
}
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart.swt
markers = Helper.chartValues ( this.axis.getMin (), this.axis.getMax (), chartRect.height, fontHeight + this.labelSpacing );
for ( final Entry<Double> marker : markers )
final String label = this.axis.getLabel ();
if ( label != null )
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart
public void transform ( final double offset, final int clientHeight )
{
final double diff = this.max - this.min;
final double factor = diff / clientHeight;
final double clientOffset = offset * factor;
setMinMax ( this.min - clientOffset, this.max - clientOffset );
}
代码示例来源:origin: org.eclipse.neoscada.chart/org.eclipse.scada.chart
public void setMax ( final double max )
{
firePropertyChange ( PROP_MAX, this.max, this.max = max );
}
代码示例来源:origin: de.dentrassi.eclipse.neoscada.chart/org.eclipse.scada.chart
public void setLabel ( final String label )
{
firePropertyChange ( PROP_LABEL, this.label, this.label = label );
}
内容来源于网络,如有侵权,请联系作者删除!