本文整理了Java中org.eclipse.scada.ui.chart.model.YAxis
类的一些代码示例,展示了YAxis
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAxis
类的具体详情如下:
包路径:org.eclipse.scada.ui.chart.model.YAxis
类名称:YAxis
[英]A representation of the model object 'YAxis'.
The following features are supported:
代码示例来源:origin: org.eclipse.neoscada.hmi/org.eclipse.scada.ui.chart.model
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YAxis getY ()
{
if ( y != null && y.eIsProxy () )
{
InternalEObject oldY = (InternalEObject)y;
y = (YAxis)eResolveProxy ( oldY );
if ( y != oldY )
{
if ( eNotificationRequired () )
eNotify ( new ENotificationImpl ( this, Notification.RESOLVE, ChartPackage.DATA_SERIES__Y, oldY, y ) );
}
}
return y;
}
代码示例来源:origin: org.eclipse.neoscada.hmi/org.eclipse.scada.da.ui.client.dataitem.details.chart
y.setLabel ( Messages.DetailsPart_ChartModel_y_label );
y.setMinimum ( -100.0 );
y.setMaximum ( 100.0 );
内容来源于网络,如有侵权,请联系作者删除!