Jump to content
Software FX Community

russ_uk

Members
  • Posts

    26
  • Joined

  • Last visited

Everything posted by russ_uk

  1. Hi, Do you have any plans to upgrade ChartFX 7 (Visual Studio 2005) to support .Net 4.0? We are currently investigating an issue raised by a customer who is reporting that the Web Client does not work on Windows 7 with .Net 4.0 installed (.Net 2.0 is not installed) Kind Regards Russ
  2. Hi, Thanks again for taking the time to reply. Unfortunately we do not have an equal number of bars per category as the number of bars per category depends on the data. This is what is causing our issue, if the number of bars per category are equal then the chart renders correctly however, when we have 1 bar on the first category and 3 bars on the second then the bars within the first category simply don't align and make the chart unreadable. Kind Regards Russ LegendBox.zip
  3. Hi, If the number of series and points per category are equal then the problem does not occur. But if you have one point per series like this; _chartFX.Data[0, 0] =1; _chartFX.Data[1, 0] = 2; _chartFX.Data[2, 0] = 3; _chartFX.Data[3, 1] = 4; _chartFX.Data[4, 1] = 5; _chartFX.Data[5, 1] = 6; _chartFX.Data[4, 2] = 7; _chartFX.Data[5, 2] = 8; _chartFX.Data[6, 2] = 9; then the bars will not align. Or if you have unequal points per series _chartFX.Data[0, 0] = 1; _chartFX.Data[0, 1] = Chart.Hidden; _chartFX.Data[0, 2] = Chart.Hidden;_chartFX.Data[1, 0] = Chart.Hidden; _chartFX.Data[1, 1] = 2; _chartFX.Data[1, 2] = Chart.Hidden; _chartFX.Data[2, 0] = Chart.Hidden;_chartFX.Data[2, 1] = Chart.Hidden; _chartFX.Data[2, 2] = 3;
  4. Hi, Many thanks for taking the time to reply. We thought that was the issue so have tried creating a single series per point and still get alignment issues. As you can see below the bars for BAR1 and BAR3 do not align with the centre of the category label. Is there anyway to get bars to align to the category label when the number of bars per category are not equal? Thanks Russ
  5. Hi, It seems there is an issue with the alignment of bars within a bar chart. We have found that if each x-axis category does not have the same number ofbars (or in effect one for each series) then bars are not aligned within thecentre of the category label. This makes the bar chart almost impossible to read. For the example attached we have 3 x-axis categories, the first category(BAR1) has 3 values the other two categories have one value each. As theattached file shows the chart is very hard to interpret. To resolve the problem we have tried plotting equal points per categoryusing Chart.Hidden but this has no affect. Is there anyway to resolve this?
  6. We think we have found a workaround for our issue. As Sharepoint is installed at the root of the webserver the ChartFX70 folder is secured by forms authentication. If we exclude the ChartFX70 virtual directory from Forms Authentication by adding an entry within the web.config then the error no longer occurs.
  7. We are also suffering from this issue and as yet have not been able to find a solution. Our project is hosted within a MOSS 2007 environment and occurs with or without the PSS Service enabled.
×
×
  • Create New...