Jump to content
Software FX Community

terrelljm

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by terrelljm

  1. Hi, do you have any feedback regarding this question. Have I posted it in the wrong forum? Thanks, Joanthan
  2. Hi, nearing the end of our evaluation of the product (went well). Wanted to check if you had any information on future releases (functionality/broad timing). There are a number of blog entries that refer to a future version 8.1. However they appear to be close to 12 months old. Any clarification would be appreciated, Jonathan
  3. Thanks, the issue has been resolved. Jonathan
  4. Hi, have attached a screen image showing the failure. Worked the first time, but not subsequently. Suspect it may have something to do with Windows 7 and my 120 DPI monitor. Original windows did not display correctly when it ran the first time. It works on a second 96 DPI Vista machine. Not an important issue from my perspective, Jonathan
  5. Hi, I have attached a dataset that is being returned from a query against an SQL Server instance. It contains Null and zero values. I have also attached some chart images that appear to be corrupt due to the NULL and/or zero values. Not sure if the Funnel charts are meant to have segments showing to the left of the funnel by design (i.e. when values are missing or zero). I also receive an "Object reference not set to an instance of an object." error when I try and chart a 3D Funnel with the attached dataset. If I remove the records with NULL values the error does not occur. The TreeMap does not display the series if it contains null values. Can provide image if you require. I'm using a 120 DPI monitor on Windows 7 with Visual Studio 2010. Please let me know if you require additional information, Jonathan
  6. Hi, I have an application which dynamically changes the stacking style for a 3D chart. It would appear that the values I am passing to the chart cause it run very slowly and sometimes use up all available memory. This behaviour only appears to occur for some combination of stacking styles with 3D views. I have included a small sample project with demonstrates the issue when you click the Update button. If you remove the "/ 100000" in the property setters, the program will run very slowly or become non-responsive. The smaller the value you use (say 1,000; 100; 100) the slower it runs. I am using Visual Studio 2010 on a Windows 7 machine. Please let me know if you require more information. Jonathan MainWindow.xaml File ===================================================== xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:WPF="clr-namespace:ChartFX.WPF;assembly=ChartFX.WPF" Title="MainWindow" Height="500" Width="900"> MainWindow.xaml.cs File===================================================== using System.Collections.Generic; using System.Windows; using ChartFX.WPF; namespace WpfApplication2 { public class SalesTerritory { double _salesThisYear; double _salesPriorYear; public SalesTerritory(string id, string name, double salesThisYear, double salesLastYear) { Id = id; Name = name; SalesThisYear = salesThisYear; SalesLastYear = salesLastYear; } public string Id { get; set; } public string Name { get; set; } public double SalesThisYear { get { return _salesThisYear; } set { _salesThisYear = value / 100000; } } public double SalesLastYear { get { return _salesPriorYear; } set { _salesPriorYear = value / 100000; } } } public partial class MainWindow { public MainWindow() { InitializeComponent(); List territoryData = new List{ new SalesTerritory("1", "Northwest", 5767341.9752, 3298694.4938), new SalesTerritory("2", "Northeast", 3857163.6331, 3607148.9371), new SalesTerritory("3", "Central", 4677108.269, 3205014.0767), new SalesTerritory("4", "Southwest", 8351296.7411, 5366575.7098), new SalesTerritory("5", "Southeast", 2851419.0435, 3925071.4318), new SalesTerritory("6", "Canada", 6917270.8842, 5693988.86), new SalesTerritory("7", "France", 3899045.694, 2396539.7601), new SalesTerritory("8", "Germany", 2481039.1786, 1307949.7917), new SalesTerritory("9", "Australia", 1977474.8096, 2278548.9776), new SalesTerritory("10", "United Kingdom", 3514865.9051, 1635823.3967) }; chart1.ItemsSource = territoryData; chart1.View3D.IsEnabled = true; chart1.AllSeries.StackedStyle = StackedStyle.Stacked100; } private void update_OnClick(object sender, RoutedEventArgs e) { chart1.AllSeries.StackedStyle = StackedStyle.Normal; } } }
  7. My apologizes, I was able to get this release to download. Jonathan
  8. Thanks for the response. I tied to download the hotfix, but no components are shown in the "Install Now" list. The option to download the latest installer references Chart FX 7, should I be using another option/page? Jonathan
  9. Hi, I'm currently evaluating the product and trying to capture a mouse down event on a title. All my efforts return a HitType of 'None' rather than 'Title'. Do you have a C# example of how to do this? Also, I assume the chart MouseClick event only responds to clicks on data points? Any help appreciated, Joanthan
×
×
  • Create New...