Ejemplo n.º 1
0
		public Channel(float minValue, float maxValue, string yAxisName)
		{
			minimumValue = minValue;
			maximumValue = maxValue;
			YAxisName = yAxisName;

			channelCursor = new Cursor(this);
		}
Ejemplo n.º 2
0
		public Channel(float minValue,
					   float maxValue,
					   string yAxisName,
					   bool enabled,
					   Color channelColor)
		{
			minimumValue = minValue;
			maximumValue = maxValue;
			YAxisName = yAxisName;
			this.enabled = enabled;
			this.channelColor = channelColor;

			channelCursor = new Cursor(this);
		}
Ejemplo n.º 3
0
		public Channel()
		{
			channelCursor = new Cursor(this);
		}