
SarahBenjamin
Members-
Content Count
21 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout SarahBenjamin
-
Rank
Member
-
How can I copy an entire series to another
SarahBenjamin replied to SarahBenjamin's topic in Web Forms
Thanks a bunch for your help on this. I was able to take another approach to my problem and now its resolved. Much appreciated, I have leared something new from your reply. Thanks -Sarah -
Hi I have a chart on my web form and I am setting up the background of the chart using the pane chart1.pane[0].background = red But I dont want the whole pane or the background to be red, but I want to be able to set how much area should be red. Is there a way that I can achieve this. Please help, its kinda urgent Thanks -Sarah
-
I am trying to assign one series to another, but it isnt working. What am I doing wrong here Chart1.Series[3] = Chart1.Series[1]; Please help Thanks -Sarah
-
The colors that I want for my series and bar charts are not listed in teh drop down list of Systm.Drawing.Color .. So I need to assign RGB Colors to my chart. How can I go about doing that in my code behind classs. Thanks -Sarah
-
Hi I have a vertical gauge and inside it a linear scale. That scale shows labels from 0-100, with 10 as an interval, in other words, its like this 0,10,20,30.. 100.. I want to be able to show it like 0,20,30,40..100 with an interval of 20 rather than 10. Which property should I be using to do taht? Or how can I go about making that gap longer than 10, say 20 or 30 Thanks -Sarah
-
I got it.. Like this.. gTimeTemp.Export(System.Drawing.Imaging. ImageFormat.Png, objMemoryStream); Thanks -Sarah
-
I am not able to export the gauge to a png image. Please help me with it. MemoryStream objMemoryStream = new MemoryStream(); gTimeTemp.Export(ChartFX.WebForms.Gauge. FileFormat.Png, objMemoryStream); ChartFX.WebForms.Gauge.FileFormat.Png is giving me an error. How can I convert gauge into a png format like I can do that with a chart object. Chart1.Export(ChartFX.WebForms. FileFormat.Png, objMemoryStream);I want the fileformat to be png for the gauge. Thanks -Sarah
-
How can I control the size of the drawn line on chart
SarahBenjamin replied to SarahBenjamin's topic in Web Forms
Got it thanks a bunch.. -Sarah -
How can I control the size of the drawn line on chart
SarahBenjamin replied to SarahBenjamin's topic in Web Forms
The line on the graph or chart. Or the series lines that we have on graphs. I want to be able to control the thinkness of the lines drawn on graphs or charts. -
Copy some piece of bit map on another bit map
SarahBenjamin replied to SarahBenjamin's topic in Web Forms
Sure, thanks Frank... I figured it out.. -
I want to keep the size of the line thin, in other words control the size of the line drawn on the chart. How can I do that?
-
How can I get the plot area of the chart?
SarahBenjamin replied to SarahBenjamin's topic in Web Forms
Thanks a bunch, that helped -Sarah -
Copy some piece of bit map on another bit map
SarahBenjamin replied to SarahBenjamin's topic in Web Forms
Thanks for the reply, but I want to get a small piece of a 1500 px bitmap and then paste that on another bitmap. This statment will give me the whole bitmap Bitmap bmp = new Bitmap(img.Width, img.Height); How can I get a small portion of bit map. Thanks -Sarah -
How can I get the plot area of the chart?
SarahBenjamin replied to SarahBenjamin's topic in Web Forms
What if all the following variables int x1 = Chart1.PlotAreaMargin.Left; int y1 = Chart1.PlotAreaMargin.Top; int x2 = Chart1.PlotAreaMargin.Right; int y2 = Chart1.PlotAreaMargin.Bottom; are set to Zero, then how can I find the plot area? Thanks -Sarah