Jump to content
Software FX Community

Frank

Staff
  • Posts

    1,761
  • Joined

  • Last visited

Everything posted by Frank

  1. Yes. Chart FX supports multiple Y-Axis. See SeriesAttributes.YAxis for more details as well as the programmer's guide.
  2. You could use logarithmic scale.
  3. Somehow, VS2010 is not finding the Chart FX Designer. Please contact tech. support and they will take you through a series of steps to solve the problem.
  4. YFrom values are not supported in the DataGrid.
  5. This is by design. Items in the LegendBox can be inverted by doing: chart.LegendBox.ItemAttributes[chart.Series].Inverted = true;
  6. If you don't have an EXE, you will need a license string to use with Chart.SetLicenseString. Please contact Software FX Support to obtain one.
  7. If you are using the latest service pack (6.2.3188.26800, tested with .NET 2.0) there shouldn't be any difference using the Framework 1.1 or 2.0. If you are still experiencing the problem with this version you will need to contact technical support directly and provide them with details on your environment as well as the type of chart you are creating.
  8. No. Surface charts do not support conditional markers.
  9. Are you using the Windows Form (.NET) version in VB6 using Interop or Chart FX 6.2 COM?
  10. The X-Axis can be one of the following 2: - Continuous: In this mode the scale will be continuous and not dictated by the data points but by a range and a step. - Discrete/Categorical: The X-Axis is simply a collection of points. There is no fixed relationship between the labels, they are simply strings. Some chart type: Bars,Hi-Low-Close,Candlestick and Cubes only support discrete/categorical X-Axis, therefore, if like in your case, the date skips some values, they will be reflected in the X-Axis. When your chart contains X-Values and the X-Axis it is categorical, we do what we call "Data Driven Labeling" in which we let the data control the labels on the X-Axis, not the range, but the actual points. In a continuous X-Axis, the data is irrelevant. Only the range has an effect on the X-Axis labeling. Looks to me that you want to have Data Driven labels, but by default, if your chart is not one of the galleries mentioned above, your X-Axis will be continuous. You can change this by setting: chart.ExtraStyle |= ChartStyles.ForceDataDriven;
  11. Do you have the latest Service Pack from our support site (7.0.3754.18555)? If not, you can get it here: http://support.softwarefx.com/ProductBase.aspx?Product=CfxNet70
  12. Simply set the property to null (Nothing in VB).
  13. No. We do support SPC charts in Chart FX 7.0 (Statistical extension) but with constant control limits (the same through the chart).
  14. I don't understand the relationship between this and the legend box (I don't see any legend box in your screenshot, just the chart and the datagrid). The behavior of highlighting is different when you have one series than when you have multiple series. This is by design. I may not be understanding the problem correctly. You may want to post a series of screenshots showing the discrepancies.
  15. What's the chart type (gallery) ? Is the series legend displaying on the legend box or something else (custom legend items, conditional attributes, custom gridlines and other elements can also be shown in the legend box)? You may want to post a sample or code snippet that reproduces the problem.
  16. Please post a sample app that reproduces the problem or contact technical support directly.
  17. What chart type (Gallery) are you using? Some chart types support horizontal orientation by doing: chart.AllSeries.Horizontal = true;
  18. Are you creating this chart dynamically (in code) or are you dropping it in a dialog? If you are creating it dynamically, you must make sure you are passing a license. The reason it works after another chart displays is that the license is validated only once per session. Once a chart succeeds, all others in the same process memory space will succeed.
  19. This font cannot be changed. It is taken from the system. It changes when system settings change.
  20. We are unable to reproduce this problem. Please post a project that reproduces the issue or contact support directly.
  21. You can have hidden points at any location in the chart. For example: chart.Data.Points = 30; chart.Data[0,3] = Chart.Hidden; chart.Data[0,8] = Chart.Hidden; chart.Data[0,18] = Chart.Hidden; // All other points set to valid data Will produce 3 breaks in the line.
  22. Onse series corresponds to a whole pie. Since each Pie slice is colored independently, the series color is not what will affect it. To change the color of a pie slice you can set: chart.Points[pointIndex].Color = myColor; if you want to share the same color for the ith slice of every series, or chart.Points[seriesIndex,pointIndex].Color = myColor; if you don't.
  23. Yes. Take a look ad Data.CompactedBy (http://support.softwarefx.com/OnlineDoc/cfxNet70//WinAPI/DataValues_CompactedBy.htm) This will help if the performance degradation comes from drawing the chart. If the degradation comes from obtaining data from your datasource, then it will not and you will have to devise a strategy for filtering your data before bringing it to the client (e.g. in SQL). You can always capture Zoom events to repopulate the chart with a new set of points.
×
×
  • Create New...