Jump to content
Software FX Community

PDyer

Members
  • Posts

    62
  • Joined

  • Last visited

Everything posted by PDyer

  1. Although not supported, however, I have found that sometimes you can insert "/n" into your string to force a word wrapping
  2. I am not sure, Do you need to use the same scale for both charts? Have you consider using panes? Please post an image for better idea of what you want to do.
  3. Since you are rendering as .NET (chart.RenderFormat = .NET), you should have full trust enabled in the .NET framework 2.0 configuration client side. Control Panel > Administrative Tools > .NET Framework Configuration > Adjust Security Policy Make Changes to this computer Give "Full Trust" to My Computer, Local Intranet, Internet, and Trusted Sites (for now). Click Finish
  4. Not sure what you mean, perhaps you want to wrap a Pie around a div tag (?). If so, you may do the following: <div> Create Pie Chart here if you are using a control or use <img src="path"> if you are using an image</div>On the other hand, if you need to retrieve data from a pie chart and displayed it in a div tag, there is no way to do this by reading the data from the pie chart, you may create a grid control and connect it to the same data source your chart is connected.
  5. I agree with IG. Here is the link for the trial download: http://www.softwarefx.com/sfxSqlProducts/cfxReportingServices/ In addition, here is very descriptive feature comparison grid with all the available features: http://www.softwarefx.com/sfxSqlProducts/cfxReportingServices/comparison.aspx As far as looks, Chart FX can look very classic or very modern by setting a few properties via its Smart Tags. In addition, Chart FX Gauges now is included on the Chart FX Reporting Service products so the options now have been extended. For images in regards all the features visit: http://www.softwarefx.com/sfxSqlProducts/cfxReportingServices/features.aspx
  6. I have sent you the last SP via email. Let me know if you still having issues.
  7. By design Chart FX shows the X axis point tooltip if you mouse over the marker and the previous-next point if you mouse over the line that connects two markets. As mentioned before this is by design and there is no way to change this behavior since you can hide all or show all the tooltips on the chart. The only option here is to give format to the tooltip to always show the same value regardless if you hover a marker or the line.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
  8. This error seems not to be a Chart FX related issue, but rather created by permission settings in SharePointPermission.I Google it and I found this link http://www.katriendg.com/aboutdotnet/2007-6-webresources-webpart-403-forbidden.aspx<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> "To resolve this I tried adding Read permissions to the IUSR_computername and the ASPNET users to the /bin directory of my web application. This solved the problem but is not a solution I can use on a production environment. Every time a new SharePoint solution is deployed to the web application the file permissions on the bin directory are reset by SharePoint anyway Using this in combination with the Impersonate="true" in the SharePointPermission in CAS does it! Not setting the impersonation will raise a security exception when calling RunWithElevatedPrivileges." I hope it helps.
  9. The definition for UserLegendBox.Continuous is "Sets the key markers of the user legend box as a single continuous bar with no borders". Therefore maybe you want to place the legend items horizontally..You may want to post a picture of what you want to accomplish. Finally I did a search for ContentLayout in Chart FX 7.0 resource center and I found this: chart1.LegendBox.ContentLayout = ContentLayout.Center; chart1.LegendBox.ContentLayout = ContentLayout.Far;<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
  10. I could not find the KeyMask property for Chart FX Client Server 6.2, I wonder if it is in fact 6.2 the version you are using. In addition, let me know if the you are using something like this: ' Set the Chart1 type to lines (ChartFX will draw an XY Chart1 if X values are provided) Chart1.Gallery = Gallery_Lines ' Specify how SQL fields are used Chart1.DataType.Item(0) = DataType_XValue Chart1.DataType.Item(1) = DataType_Value Chart1.DataType.Item(2) = DataType_Value ' Let ChartFX know that the numbers in the X axis are really dates Chart1.AxisX.LabelsFormat.Format = AxisFormat_DateTime ' Set the Format for the X Axis Labels Chart1.AxisX.LabelsFormat.CustomFormat = "mm" Dim maskString As String maskString = "value: " + "%k " + " my value is: " + "%v" Chart1.TipMask = maskString Keep in mind that %k will work only if you use KeyLeg: Chart1.KeyLeg(0) = "Jan" Chart1.KeyLeg(1) = "Feb" Chart1.KeyLeg(2) = "Mar" Chart1.KeyLeg(3) = "Apr" You may also want to post some code to find out the way you are formatting your Tooltips.
  11. In addition you may want to check the following KB's: http://support.softwarefx.com/Article.aspx?Product=CfxNet70&KBID=7621009&Embed=1 http://support.softwarefx.com/Article.aspx?Product=CfxNet70&KBID=7621004&Embed=1
  12. In regards your questions about pricing, you need to have a full [Chart FX 7.0 + Chart FX Extensions Pack] license, this will provide you with a license for one developer and one production server, you also need additional [Chart FX 7.0 + Chart FX Extensions Pack] licenses if you need to license more developer and/or more production servers. For pricing please visit http://www.softwarefx.com/sfxOrder/pricing.aspx<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> As far as the message "Object reference not set to an instance of an object", please check that you have download the Extensions pack for Chart FX 7.0 notice that there are two versions. In addition, follow these instructions: -Remove all the Chart FX references from your application. -Delete the Chart control from the aspx page. -Then add the chart control to the aspx page. When you add the Chart control, all the chartfx references should be added to the application. -Build and run the application. Let me know what happens. Finally, check the file version of dlls in the following locations. C:\Program Files\Chart FX 7\bin C:\Program Files\Chart FX 7\ChartFX70\Download C:\Program Files\Chart FX 7\ChartFX70\PSS\bin C:\Program Files\Chart FX 7\PSS (there's just the PSS service application here). Make sure all the files (dlls) have the file version 7.0.2893 (service pack version). Also, the installation folder might be Chart FX for visual Studio 2005 (instead of Chart FX 7) in your machine. If some of this dlls are missing, you should uninstall Chart FX and re-install, then try a brand new sample to confirm the installation is ok.
  13. Basically the way to connect Chart FX to SQL is as follows: string mySelectQuery = "SELECT * from FinancialData";string myConnectionString = string.Format("Provider=Microsoft....);System.Data.OleDb.OleDbConnection myConnection = new System.Data.OleDb.OleDbConnection(myConnectionString);System.Data.DataSet ds = new System.Data.DataSet();System.Data.OleDb.OleDbDataAdapter adapter = new System.Data.OleDb.OleDbDataAdapter(mySelectQuery, myConnection);adapter.Fill(ds, "MapsSQLConn");Chart FX Maps will handle the data and assign colors base on Conditional attributes using the code bellow:chart1.ConditionalAttributes.Add(new ConditionalAttributes());chart1.ConditionalAttributes.Add(new ConditionalAttributes());chart1.ConditionalAttributes.Add(new ConditionalAttributes());chart1.ConditionalAttributes[0].Condition.To = 500;chart1.ConditionalAttributes[0].Color = Color.Red;chart1.ConditionalAttributes[1].Condition.From = 500;chart1.ConditionalAttributes[1].Condition.To = 1000;chart1.ConditionalAttributes[1].Color = Color.Yellow;chart1.ConditionalAttributes[2].Condition.From = 1000;chart1.ConditionalAttributes[2].Color = Color.Green;More detailed information and full CS samples can be found in the Resource Center installed by Chart FX, section Chart FX Extensions/Chart FX Maps/ Working with Data.In addition, our Technical Support department will be happy to assist you with further questions. Please send an email to Support@SoftwareFX.com to my attention and I will reply to any further inquire.
  14. Currently Chart FX does not support this feature, but you may create your own 16x16 or 32x32 icons in the toolbar. In addition, using Chart FX 7.0 (.NET) you may also use MenuBar object to create a menu under the toolbar so more common options will be more visible: chart1.MenuBar.Visible = true; chart1.MenuBar[0].CommandId = (int) CommandId.Area;
×
×
  • Create New...