Jump to content
Software FX Community

IGSFX

Staff
  • Posts

    156
  • Joined

  • Last visited

Everything posted by IGSFX

  1. IGSFX

    Release Date?

    The current bits are release quality. The only thing preventing us from releasing the product is some changes we are making to the documentation as well as a series of samples we have created and that will be integrated into the final product, once they pass QA testing. We are also considering adding a few UI aspects to the final product, including, though not limited to, the ability to enable zoom from a UI provided by the chart itself. Since Beta 2, we have made available a Go-Live license for customers like you, in need to deploy Chart FX with their applications. For further details about our Go-Live licensing program please visit http://www.softwarefx.com/sfxNetProducts/ChartFX/wpf/GoLiveDetails.aspx. --- IG Software FX
  2. The bits for this product are 99% ready for release. At this time we are finalizing the documentation and samples for a final release in mid Q1, so the chances of release before the end of March 2009 are highly optimistic. --- IG Software FX
  3. If you want the image as the gauge background, i.e. what you see beneath the scale but within the border, the best way to do it is adding an image to the Images collection, and setting the size mode properly (Normal, Stretch or Custom). If you want the image in the blank space behind the border, you may want to check the BackgroundImage property (in WinForms). --- IG Software FX
  4. By default, the titles are clipped to the gauge border. If you want to place it outside the border, you need to set the VerticalPosition property to OutsideBorder. --- IG Software FX
  5. IGSFX

    Release Version

    At this time we are finalizing our Visual Studio design time integration, documentation and samples. We expect the final release to be available before the end of the year. --- IG Software FX
  6. IGSFX

    Gauges

    We plan to make Chart FX Gauges available in WPF but there is no specific timeline for that. The initial release of Chart FX for WPF will not include gauge components. --- IG Software FX
  7. IGSFX

    3d Charts

    Hi, please post your chart image as an attachment since we see a broken image. ---- IG Software FX
  8. Please try running the installer from the command prompt using the /N parameter, as in <setup name> /N. This should solve the problem. --- IG Software FX
  9. For the most updated plans regarding our release schedule please contact us at wpf@online.softwarefx.com (remove online) ------- IG Software FX
  10. We apologize for the lack of documentation during the beta period. The only documentation available at this time is the sample app and basic API documentation included with the installer in the Help and Samples folder. We are working to estabilize our bits and release a go-live license, due to the need that many of our beta customers have to use Chart FX for WPF in their production environment. We are also working in a complete set of documentation resources, including samples, full API and Programmer's Guide, which will be available with the released product later this year. Once again, we apologize for the current documentation stage. We will be glad to help you with any question you may have, either through this community site or by email at wpf@online.softwarefx.com (remove online) ------- IG Software FX
  11. We have uploaded a new build today (0.8.3091.*) which can be downloaded by visiting www.softwarefx.com/wpf. We will be notifying through this community site when a new beta build is available. This will apply only to new public builds, not interim hotfixes that may be referred to by some of our developers in their reply. You can always contact us at wpf@online.softwarefx.com (remove online) to get an interim build. This build essentially includes many bug fixes but does not add new functionality to the previous build. ---- IG Software FX
  12. We have uploaded a new build today (0.8.3091.*). We will be notifying in this community sites when a new beta build is available. This will apply only to new public builds, not interim hotfixes that may be referred to by some of our developers in their reply. You can always contact us at wpf@online.softwarefx.com (remove online) to get an interim build.
  13. You can google some Reporting Services chart screenshots but that will only show you a basic look. If you want to really determine the value of using our Chart FX for Reporting Services, I recommend you to install SSRS and compare the look, ease of use and features side by side. ---- IG Software FX
  14. You will need to transpose the data using the following code: chart1.DataSourceSettings.Style |= DataSourceStyles.Transpose; -------- IG Software FX
  15. Todd, With the standard licensing mechanism, a license is required on each build machine. However, we can come up with an alternate licensing mechanism that adapts to your situation. Please contact us to wpf@online.softwarefx.com (remove online) for available options. IvanG
  16. Please contact us at support@online.softwarefx.com (remove online) for a possible workaround.
  17. Try moving your script to a folder that appears in your PATH environment variable. This way PowerShell will find it regardless of your current path location.
  18. This would be essentialy a digital panel gauge with other digital panel inner gauges. If you remove their borders it will look like a multiline gauge. You can access the innergauge values with -InnerGauges_0_DigitalPanel_Value, replacing 0 with the corresponding index. You will need to play with the layout alignment, for which using the Creator is the best way to go. If you add the innergauges with the Template Creator, then you can access them directly in your script. If you do everything in the cmdlet, then you will need to add innergauges using -InnerGauges_Add Digital. This works in Vista Sidebar as well as desktop.
  19. If I understand correctly, you want to be able to plot dates in a linear gauge instead of numbers, e.g. the scale min is 01/01/2007, the scale max is 12/31/2007 and you want to plot today's date. Linear and radial gauges don't accept dates as values/min/max, but you can do a couple of tricks to achieve what you want, using PowerShell and the .NET Framework. First, you need to convert your dates into doubles, by using .NET's Convert.ToOADate, which converts a datetime into its corresponding double. Then, you can customize the scale's labels to show the dates you want instead of the numbers. The following code assigns 01/01/2007 as the scale's min and 12/31/2007 as the scale's max, and today's date as the plotted value (I assume today's date is a day in the year 2007). $min = [Convert]::ToDateTime("01/01/2007")$max = [Convert]::ToDateTime("12/31/2007")$today = get-date out-gauge -type horizontal -mainscale_min $min.ToOADate() -mainscale_max $max.ToOADate() -value $today.ToOADate() -mainscale_MaxAlwaysDisplayed true -mainscale_CustomLabels_39083 "01/01/2007" -mainscale_CustomLabels_39447 "12/31/2007" -mainscale_tickmarks_major_step (39447-39083) The numbers 39447 and 39083 that seem to appear magically are the representation as double of $min and $max ($min.ToOADate and $max.ToOADate). I'm setting the step so no intermediate labels appear, but you can tweak it to show whatever you want, just making sure that you assign the appropriate customlabels to avoid showing a number. It's important to be aware of that you are actually passing a number, which will appear in places like the tooltip. You can customize your tooltip to show the actual date plotted by adding -mainindicator_tooltip $today.This is not a perfect solution, but I hope it helps.
  20. I put your data in a CSV file and connected it to an X/Y line chart with no problem, getting the 24 points as expected. Please contact me at ivang@online.powergadgets.com (remove online) and I will give you the .pgf and .csv files. Essentially, I created an X/Y chart using the hour column and the X axis value and the other two columns as Y axis values. Is that what you were doing? Are you using the Creator or the out-chart cmdlet?
  21. Service Packs can now be updated online at http://www.powergadgets.com/update/. This will download an ActiveX (UpdateFX) which will compare your installed files against the latest files available in he most recent service pack and will install them if necessary.
  22. A new hotfix build fixing this issue is available for download at ftp://ftp.powergadgets.com/currentbuild. Please remember that hotfix builds are interim and not as thoroughly tested as a service pack build, so you might experience other issues.
  23. Thank you for reporting this. I was able to reproduce the issue in the latest hotfix. We will need a new build to fix it, which I expect to have it ready during the next business day (Monday). Installing a previous working build should fix it. Make sure you uninstall the non-working version, remove all files from the PG installation folder and install the previous working version.
  24. Please review the following blog post: http://community.softwarefx.com/blogs/powergadgets_team_blog/archive/2007/02/24/Integrating-PowerGadgets-with-your-website.aspx What version of PowerGadgets are you running (file version in any of the PowerGadgets dll files)? Copy and Paste was added to the PowerGadgets Creator long time ago. There's no difference in functionality between the trial version and the purchased version, other than the expiration of the license.
  25. Use the DisableAuto parameter as follows: out-chart -DisableAuto AxisY
×
×
  • Create New...