Beispiel #1
0
		public AxisBottom(Chart chart, int x1, int x2, int y) : base()
		{
			this.chart = chart;
			this.x1 = x1;
			this.x2 = x2;
			this.y = y;
			this.Init();
		}
Beispiel #2
0
		public AxisRight(Chart chart, Pad pad, int x, int y1, int y2) : base()
		{
			this.chart = chart;
			this.pad = pad;
			this.x = x;
			this.y1 = y1;
			this.y2 = y2;
			this.Init();
		}
Beispiel #3
0
		public ToolBar(Chart chart = null) : base()
    {
      this.Chart = chart;
    }
Beispiel #4
0
		public Pad(Chart chart, int x1, int x2, int y1, int y2)
		{
			this.drawGrid = true;
			this.chart = chart;
			this.SetCanvas(x1, x2, y1, y2);
			this.primitives = ArrayList.Synchronized(new ArrayList());
			this.notDatePrimitives = new ArrayList();
			this.datePrimitives = new SortedRangeList();
			this.F3nJMka9IZ = new SortedRangeList();
			this.xFrJQlHpbJ = new SortedRangeList(true);
		}