コード例 #1
0
ファイル: CustomLabel.cs プロジェクト: nobled/mono
		public CustomLabel (double fromPosition, double toPosition, string text, int labelRow, LabelMarkStyle markStyle)
		{
			FromPosition = fromPosition;
			ToPosition = toPosition;
			Text = text;
			RowIndex = labelRow;
			LabelMark = markStyle;
		}
コード例 #2
0
ファイル: CustomLabel.cs プロジェクト: pmq20/mono_forked
 public CustomLabel(double fromPosition, double toPosition, string text, int labelRow, LabelMarkStyle markStyle)
 {
     FromPosition = fromPosition;
     ToPosition   = toPosition;
     Text         = text;
     RowIndex     = labelRow;
     LabelMark    = markStyle;
 }
コード例 #3
0
ファイル: CustomLabel.cs プロジェクト: nobled/mono
		public CustomLabel (double fromPosition, double toPosition, string text, int labelRow, LabelMarkStyle markStyle, GridTickTypes gridTick)
		{
			FromPosition = fromPosition;
			ToPosition = toPosition;
			Text = text;
			RowIndex = labelRow;
			LabelMark = markStyle;
			GridTicks = gridTick;
		}
コード例 #4
0
ファイル: CustomLabel.cs プロジェクト: pmq20/mono_forked
 public CustomLabel(double fromPosition, double toPosition, string text, int labelRow, LabelMarkStyle markStyle, GridTickTypes gridTick)
 {
     FromPosition = fromPosition;
     ToPosition   = toPosition;
     Text         = text;
     RowIndex     = labelRow;
     LabelMark    = markStyle;
     GridTicks    = gridTick;
 }
コード例 #5
0
 public void Add(double labelsStep, DateTimeIntervalType intervalType, double min, double max, string format, int rowIndex, LabelMarkStyle markStyle)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public CustomLabel Add(double fromPosition, double toPosition, string text, int rowIndex, LabelMarkStyle markStyle, GridTickTypes gridTick)
 {
     throw new NotImplementedException();
 }