Exemple #1
0
        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);
        }
Exemple #2
0
        public DateTimeAxisRescaleController(DateTimeAxisRescaleConditions doc, DateTimeScale ax)
        {
            _doc  = doc;
            _axis = ax;

            SetElements(true);
        }
Exemple #3
0
 protected void InternalSetRescaling(DateTimeAxisRescaleConditions rescaling)
 {
     this._rescaling = rescaling;
 }