Exemplo n.º 1
0
 private ChartRecord CreateChartRecord(int x, int y, int width, int height)
 {
     ChartRecord r = new ChartRecord();
     r.X = (x);
     r.Y = (y);
     r.Width = (width);
     r.Height = (height);
     return r;
 }
Exemplo n.º 2
0
        public override Object Clone()
        {
            ChartRecord rec = new ChartRecord();

            rec.field_1_x = field_1_x;
            rec.field_2_y = field_2_y;
            rec.field_3_width = field_3_width;
            rec.field_4_height = field_4_height;
            return rec;
        }
Exemplo n.º 3
0
 private HSSFChart(HSSFSheet sheet, ChartRecord chartRecord)
 {
     this.chartRecord = chartRecord;
     this.sheet = sheet;
 }