J
JH
I have a tab control in my form. I am trying to create a dynamic pie chart.
If I use the following code,it works fine on the main form.
this.CreateGraphics().FillPie(brushtargeted,240,200,200, 200, 0,
inttargeted);
However, I want the pie chart to be on tab control area and if I try both of
the following , Idon't see any pie chart. HELP PLEASE
this.tabControl1.CreateGraphics().FillPie(brushtargeted,340,100,200, 200, 0,
inttargeted);
tabControl1.CreateGraphics().FillPie(brushtargeted,340,100,200, 200, 0,
inttargeted);
Newbie to C# here
If I use the following code,it works fine on the main form.
this.CreateGraphics().FillPie(brushtargeted,240,200,200, 200, 0,
inttargeted);
However, I want the pie chart to be on tab control area and if I try both of
the following , Idon't see any pie chart. HELP PLEASE
this.tabControl1.CreateGraphics().FillPie(brushtargeted,340,100,200, 200, 0,
inttargeted);
tabControl1.CreateGraphics().FillPie(brushtargeted,340,100,200, 200, 0,
inttargeted);
Newbie to C# here