Jump to content
Software FX Community

Frank

Staff
  • Posts

    1,761
  • Joined

  • Last visited

Everything posted by Frank

  1. The Update Panel doesn't support tags ( Flash, Chart FX or any other Active Object). You need to render as image or put the chart outside of the update panel and use alternative AJAX calls to refresh it. Take a look at the following KB article for more info: Q7651001. Chart FX for VS 2005 and AJAX URL: http://support.softwarefx.com/ShowArticleSep.aspx?Type=KB&Product=CfxNet70&Source=http://support.softwarefx.com/kb/765/1/001.htm?_r=1
  2. What's the type of the column in the DataBase?
  3. Can you provide a sample app that reproduces the problem? Or you can contact support directly and provide them with a simplified version of your app
  4. The settings in your browser security (.NET Framework Security) don't allow for this operation. Notice that when you access your server you are in another zone. For more information on the .NET Client security please refer to the following KB article: http://support.softwarefx.com/Article.aspx?Product=CfxNet70&KBID=6141001&Embed=1
  5. The number of decimals displayed in the tooltip is controlled through the DataFormat property in the Axis. For example: chart.AxisY.DataFormat.Decimals = 2;
  6. You can not force an update of an area outside the update pannels when responding to an event of a control that is inside one. You can update the chart using an AJAX call through the UserCallBack event as explained here: http://support.softwarefx.com/Article.aspx?Product=CfxNet70&KBID=7651001
  7. Where in the X-Axis? One image for the whole axis? Anotations are certanly the way to go.
  8. It does. Notice that there is a diference between .NET Framework 4.0 and .NET Framework 4.0 Client Profile. Make sure you are using the latest service pack from our support site.
  9. Frank

    study event

    The StudyChanged event (in the statistical extension) is fired.
  10. Frank

    OLAP Exception

    Do you have the OLEDB provider for OLAP installed? The error says "Provider cannot be found. It may not be properly installed". Can you connnect to OLAP dataSources otherwise (othern than using Chart FX). If your computer is 64-Bit will need both 32-Bit and 64-Bit version of this provider.
  11. 1) For the first problem you will need to post a working sample that reproduces the exception. You shouldn't get any when the chart is resized. 2) You can not add new pages to the propeties dialog. You need to provide you own using a custom command. 3) A tutorial showing how to customize the toolbar/menubar is located in the resource center and on-line docs and samples here: http://support.softwarefx.com/OnlineDoc/CfxNet70/PG/html/CustomizingToolbar.htm
  12. This should do it: chart1.Gallery = Gallery.Pie; Pie pie = (Pie)chart1.GalleryAttributes; pie.Shadows = true;
  13. Frank

    Spider chart

    Yes. We call this a Radar chart: chart.Gallery = Gallery.Radar;
  14. You need to contact our sales department as each instalation will require a unique serial number.
  15. What do you want to display in the headers?
  16. Add the line at the end: Chart1.DataSourceSettings.Fields.Add(New FieldMap("Num_Deals", FieldUsage.Value)) 'Chart1.DataSourceSettings.Fields.Add(New FieldMap("BuyOutExitType", FieldUsage.Value)) Chart1.DataSourceSettings.Fields.Add(New FieldMap("Sold_For_USD", FieldUsage.Value)) Chart1.DataSourceSettings.Fields.Add(New FieldMap("Heading", FieldUsage.Label)) Then, after the data is read, set: chart.Series[1].Gallery = Gallery.Lines; // Last series is series 1 (2 series)
  17. Set: chart.getData().getLabel().setItem(0,"MyLabel1"); chart.getData().getLabel().setItem(0,"MyLabel2");
  18. Because you are using crosstab, the number of series will be dependant on your data. You want to add a line to this chart, but where is the data form the line comming from? The same cross-tab? If the data is comming from somewhere else, waht you need to do is let Chart FX do its crosstab magic and after the data is read (you can call chart.DataSourceSettings.ReadData to force a read), then you can add one more series to the chart and use the data API to set the values to this new series (last).
  19. The dates displayed in the X-Axis correspond to a range, they do not necesarilly match the dates in your data. You can have data comming every day and yet have labels in the X-Axis displaying months. The end-of-the-month date that you see indicates when the month of data ends. There are basically 2 paradigms to label the X-Axis: - As a range, independent of the data points (except for the range). - As each individual point. If you want your labels to be those of each specific point, you must then assignthen as labels and not as X-values (default) when you do your binding (see FieldUsage.Label for details). Notice that doing this will eliminate all the automatic adjusting of label steps (days, moths, years) in the X-axis.
  20. They will be displayed in the order in which they are created. To ensure the order you want do this in the form-load (do not turn on the toolbar at design time): chart1.MenuBar.Visible = true;chart1.ToolBar.Visible = true; annotation.ToolBar.Visible = true; As for the ManuBar customization, the menubar is a toolbar too, it has the same API.
  21. Chart FX 7 is compatible with VS 2010
  22. Simply set: chart.AxisY.LabelsFormat.Decimals = 1; To show 1 decimal point.
  23. Frank

    Bubbles charts

    The x-value must be bound as an X-Value (FieldUsage.XValue), the value (vertical position) and size are two separate series (FieldUsage.Value), the first is the position and the second is the size.
  24. To completely remove all data from the chart do: chart.Data.Clear(); Otherwise, to increase the number of series is is ok to do: chart.Data.Series++
  25. Martin, Can you please post an example of your data, a picture of what generated and a picture of wehat you would want instead. I'm having trouble understanding what you are trying to describe.
×
×
  • Create New...