Jump to content
Software FX Community

DannE

Members
  • Posts

    45
  • Joined

  • Last visited

Everything posted by DannE

  1. Thanks, that makes sense. Have another question, is there any particular reason why the last date on the x-axis wouldn't show, as shown in the attachment. I am not setting any property that would make it do that.
  2. Yes, I understand why 2007 doesnt show But if you look at the graph and try to figure out, manually, where Nov 2007 might be on the X-axis then the last data point will approximately correspond to 2007 January (by looking at the size of interval between two years and approximating ). However, in the dataset the last datapoint is Nov 2007. If its not clear what I am saying then please look at the attached graph
  3. I get the correct graph if I use excel i.e. data is not shifted by one year to the left
  4. The line graphs are shifted to the left by one year and so the last year, 2007, doesn't show. I have attached the project, which contains the graph that I got and a comma seprated file for the data. Please provide any suggestions
  5. DannE

    Center labels

    If you rotate all the X-axis label by a certain angle is there a property which you can use to center the labels? I found something for the pointlabels i.e. chart.PointLabelAlign, but is there something for the regular axis labels?
  6. DannE

    Labels overlap

    In the chart(attached) if I increase the label font size some labels are omitted, I am guessing because they tend to overlap. Is it possible to force all labels to show even if they overlap?
  7. Is it possible to get the labels as in the graph (bottom part) for each data point in the two series? I know there are point labels but I dont want view labels where the bars end rather I want them at the bottom like in the graph...
  8. DannE

    Bar charts

    the source table for this graph has two rows and four columns, so it considers each column as a separate series. Is it possible to have each row considered a series without tranposing data?
  9. DannE

    Bar charts

    What I mean is that I want the two series to be together that is the first data point of the first series should be with the first data point of the second series. What I am getting right now is shown in the new graph that i have attached i.e. the two series are separate.
  10. DannE

    Bar charts

    I want to have bar charts similar to what I have in the graph attached. Basically blue is one series (first row of table that I am getting from DB) and green is the second series (second row of the same table). What settings do I need to set to make this happen?
  11. added the two lines of code getting a weird graph, please take a look.
  12. Dataset: Country: -0.01Regional vs. : -2.3300000000000001E-2Sector: -4.8300000000000003E-2Price: -6.3200000000000006E-2Revisions: -1.7299999999999999E-2Intra: -5.3900000000000003E-2Valuation: -1.7100000000000001E-2Sector: -0.23310000000000003 code: Chart1.Gallery = SoftwareFX.ChartFX.Gallery.Bar; Chart1.Titles[0].Text = title; Chart1.BackColor = System.Drawing.Color.White; //chModContribution.SerLegBox = true;Chart1.PointLabels = true;Chart1.AxisX.Visible= false; Chart1.AxisY.LabelsFormat.CustomFormat = "0.0%"; Chart1.PointLabelMask = "%L \n %v"; Chart1.BorderObject.Color = System.Drawing.Color.Black; Chart1.ImgQuality = 100; Chart1.AxesStyle = SoftwareFX.ChartFX.AxesStyle.Math; Chart1.AxisX.Line.Color = Color.Transparent; Chart1.PointLabelFont = new System.Drawing.Font("Arial", 7); Chart1.PointLabelColor = System.Drawing.Color.Black; Chart1.ImgSizeable = true;
  13. What I mean is the bars are not starting from zero.
  14. please look at the attached screen shot, why does this happen?
  15. The "Data" property doesn't exist in ChartFX 6.2..any suggestions? 'SoftwareFX.ChartFX.Internet.Server.Chart' does not contain a definition for 'Data'
  16. Thanks.. on similar lines is it possible to set the legends of each series? I have been trying Chart1.Series[0].Legend = "Series 1" but it doesn't work...
  17. DannE

    ChartFX width

    When I do chModContribution.Height = Unit.Percentage(100) along with chModContribution.Width = Unit.Percentage(100) the chart doesn't show. But if I only chModContribution.Width = Unit.Percentage(100) the chart shows up but it is stretched horizontally. Any way to maintain aspect ratio? Any reason why the chart doesnt show ?
  18. Is it possible to create discontinuous line graphs? lets say I have data from 1985 to 1990 and missing data for two years 1987 and 1988, so I want these gap to be displayed as a discontinuity and not a straight line joining data point 1986 to 1989. Is is possible?
  19. Is is possible to split point labels over two lines? Lets say I have a column name "Intra sector" in the dataset and I want to display it, in the bar charts, as: Intra Sector on one of the bar..is it doable?
  20. DannE

    ChartFX width

    How can you specify the ChartFX width to be the width of the page? I tried setting the width property to 100% but it reduces the width to 1/4 of the page width, can it be done?
  21. The website we have in production environment had a fast initial loading time but after the ChartFX assemblies were added, the first time it takes to load the page is 4 - 5 seconds and after that the page loads fast as long as the aspnet_wp.exe process doesn't sleep. Is this a normal behaviour in terms of the initial loading time?
×
×
  • Create New...