org.eclipse.scada.ui.chart.model.YAxis类的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中org.eclipse.scada.ui.chart.model.YAxis类的一些代码示例,展示了YAxis类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAxis类的具体详情如下:
包路径:org.eclipse.scada.ui.chart.model.YAxis
类名称:YAxis

YAxis介绍

[英]A representation of the model object 'YAxis'.

The following features are supported:

  • org.eclipse.scada.ui.chart.model.YAxis#getMinimum
  • org.eclipse.scada.ui.chart.model.YAxis#getMaximum
    [中]模型对象“YAxis”的表示形式。
    支持以下功能:
    *组织。日食监控与数据采集系统。用户界面。图表模型YAxis#getMinimum
    *组织。日食监控与数据采集系统。用户界面。图表模型YAxis#getMaximum

代码示例

代码示例来源: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 );

相关文章