コード例 #1
0
ファイル: DateTimeScale.cs プロジェクト: carlhuth/GenXSource
        public void ProcessDataBounds(DateTime xorg, DateTime xend, DateTimeAxisRescaleConditions rescaling)
        {
            bool isAutoOrg, isAutoEnd;

            rescaling.Process(ref xorg, out isAutoOrg, ref xend, out isAutoEnd);
            ProcessDataBounds(xorg, !isAutoOrg, xend, !isAutoEnd);
        }
コード例 #2
0
        public DateTimeAxisRescaleController(DateTimeAxisRescaleConditions doc, DateTimeScale ax)
        {
            _doc  = doc;
            _axis = ax;

            SetElements(true);
        }
コード例 #3
0
ファイル: DateTimeScale.cs プロジェクト: carlhuth/GenXSource
 protected void InternalSetRescaling(DateTimeAxisRescaleConditions rescaling)
 {
     this._rescaling = rescaling;
 }