Ejemplo n.º 1
0
        public Rptimg()
        {
            InitializeComponent();
            Size    = new Size(762, 500);
            Resize += Rptimg_Resize;

            lineChart          = new LineChartRender(this);
            lineChart.Location = new Point(50, 60);
            lineChart.Size     = new Size(Size.Width - 100, Height - 80);
        }
Ejemplo n.º 2
0
        //private List<Reportlab> datasourceList;
        //private List<>


        public INSLineChartView()
        {
            InitializeComponent();
            lineChart          = new LineChartRender(this.xapFormControl1);
            lineChart.IsRight  = false;
            lineChart.Size     = this.xapFormControl1.Size;
            lineChart.Location = new Point(5, 0);
            this.xapFormControl1.AddRender(lineChart);
            this.xapFormControl1_FormCreated();
            this.SizeChanged += new EventHandler(INSLineChartView_SizeChanged);
        }