Jump to content
Software FX Community

TecheeGirl

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by TecheeGirl

  1. I am trying to create a crosstab grid under my chart via ChartFX7 and asp.net If it just add a grid, the table shows up under the chart. But if it change it to a crosstab object, the page comes up with a blank box where the chart goes. Here is the code.... Am I missing something? This is the code that throws a blank chart page. CrosstabDataProvider cfxCT = new CrosstabDataProvider(); cfxCT.DataSource = DT_WeeklyClosed; Chart1.DataSourceSettings.Fields.Add(new FieldMap("Weekend", FieldUsage.ColumnHeading )); Chart1.DataSourceSettings.Fields.Add( new FieldMap("Weekly Closed Avg", FieldUsage.RowHeading ));Chart1.DataSourceSettings.Fields.Add(new FieldMap("WeeklyClosedAvg", FieldUsage.Value)); Chart1.DataSource = cfxCT; But, this code below will show the table below the chart. Chart1.DataSourceSettings.Fields.Add(new FieldMap("WeekEnd", FieldUsage.XValue)); Chart1.DataSourceSettings.Fields.Add( new FieldMap("WeeklyClosedAvg", FieldUsage.Value)); //Assign the data source to the chartChart1.DataSource = DS_WeeklyClosed.Tables[0]; Why is one type of code working and not the other? Thanks!
  2. Hi All, I'm still really green with ChartFX and I'm having trouble finding anything in code that shows me how to show the grid of data below the chart like I see all over the place. I only have a 6.2 book and 7.0 software. The book says it should be in a certain place but it's not and I can't find a chart example in the samples provided upon installation. I'm attaching the datasource in the codebehind and doing all the designing in the c# file. Can someone help me with a good example? Thanks!
  3. I'm really new to Chart FX and posting here b/c I'm having trouble getting help from Chart FX directly. Anyone have any problems installing Chart FX and then try to open up the template solutions in VS 2008? I get an error "...cannot be opened because its project type (.csproj) is not supported by this version of the application..." I'm using VS2008 v9.0 3.5 spi Thanks!
×
×
  • Create New...