Jump to content
Software FX Community

dayiku

Members
  • Posts

    9
  • Joined

  • Last visited

dayiku's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I have a chart with monthly data and yearly cummulative data. I would like to have the chart display data so that the monthly data is not shrunk on the chart, E.g. months Months Value Cummulative Value 1 6 6 2 5 11 3 7 18 I want to display the chart with both values for Value and Cummulative Value but since the cummulative value grows much faster and can shrink the Values displayed on the chart, i would like to set a custom scale for part of the chart to display the values. Then i would like to reset the scale to display the cummulative Values. How can i do this?
  2. I have 2 lines in a chart that show cummulative data. I want to display the first line for a sample set of data (eg Jan - Aug) and the second line for another sample set from Sep - Dec. How can i do this in ChartFX?
  3. Thanks for your response. I think i may have found the source of my problem. I am currently running ChartFx version 7.0.3306.26568 It seems there is a bug in this chartfx where it only allows you to modify series 1-4. Any additional series is automatically generated and cannot be accessed in codebehind. Also when i add a new series in the design view it is removed when i switch to the source view. I have checked the version before this and there are no problems like this with it. Is this problem familiar and is there a fix for it?
  4. I am tring to plot data in a chart. I am able to successfully plot up to 4 series on one chart, however when i reference the 5th series i get an index out of range error. When i comment out this reference to the 5th series the chart is displayed with the additional series. My question: Is there a limit on the num of series in one chart? How can i reference additional series' without generating the error messages?
  5. Thanks for your response. Is it possible to send the whole web page, so i can present the chart with some context? I have tried to send it using the webrequest object, but it sends the page without the chart.
  6. I am trying to send an email to a user after a report has been run. I want to send the web page including the chart in the body of the email. So far i have been working with the webrequest object to get the information. However, i am faced with one significant problem and that is the image for the chart is not included in the email. Please see a sample of my code below private string HttpContent(string url)<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> { System.Net.WebRequest objRequest = System.Net.HttpWebRequest.Create(url); StreamReader sr = new StreamReader(objRequest.GetResponse().GetResponseStream()); string result = sr.ReadToEnd(); sr.Close(); return result; } Can somebody tell me how to send a web page contaning a chart as an email body? Thanks,
  7. I have a bar chart and i would like to make the individual bars clickable. The x-axis has the months and the y-axis is the count. The information displayed in the chart is a summary, so i would like users to be able to click on a particular bar representing a month and a quantity to go to another page with the details. How can i insert dynamic links into a bar chart to do this?
  8. I have a bar chart with data that has been grouped. e.g Number of oranges and bananas sold each month On the x axis I want to have oranges & bananas grouped together, so that i can compare how many were sold in each month. Along the x axis will have the months listed. Can somebody tell me how to do this? Thanks
×
×
  • Create New...