Jump to content
Software FX Community

piiguu

Members
  • Posts

    22
  • Joined

  • Last visited

Everything posted by piiguu

  1. Hi, We are using ChartFX 7 WebForms version 7.0.4529.29043. When we put the chart in a ASP.NET WebForm and rendered the chart in IE9 in SVG format by setting RenderFormat="Svg", the chart was displayed in Adobe SVGViewer on the page. However, it was displayed just as an ordinary image like JPG or PNG, not any behaviors existed at all, even the basic tooltip was missing. Is this by design or something I need to do to make it work? Thanks, Pg
  2. Hi, We are using ChartFX 7 WebForms version 7.0.4529.29043. When we rendered the chart in IE9 in SVG format by setting RenderFormat="Svg", we still needed a SVGViewer plugin installed to display the chart. As IE9 has native support for SVG, can the chart be rendered directly into inline SVG? Thanks, Pg
  3. This issue is in the same category as http://community.softwarefx.com/forums/t/12355.aspx. The ordering of the series in the plot is different from the ordering in data grid in Gantt chart. Run the following sample code, you can see that in the plot Women is shown on top of Men, but in data grid they are in opposite order where Men is first then Women second. chart1.Data.Series = 2; chart1.Data.Points = 3; chart1.Gallery = Gallery.Gantt; chart1.LegendBox.Visible = true;chart1.DataGrid.Visible = true; chart1.Series[0].Text = "Men";chart1.Series[1].Text = "Women"; chart1.AxisX.Labels[0] = "A";chart1.AxisX.Labels[1] = "B";chart1.AxisX.Labels[2] = "C"; chart1.Data[0, 0] = 15; chart1.Data[0, 1] = 11; chart1.Data[0, 2] = 14; chart1.Data[1, 0] = 9; chart1.Data[1, 1] = 7; chart1.Data[1, 2] = 8;
  4. Hi, series in Legend Box and Data Grid are listed in different orders when the chart is a Gantt chart. Other types of charts don't have this issue. Is it a bug? The following code demostrates the issue. chart1.Data.Series = 2; chart1.Data.Points = 3; chart1.Gallery = Gallery.Gantt; //--> Trying changing to Bar to see different behavior chart1.LegendBox.Visible = true;chart1.DataGrid.Visible = true; chart1.Series[0].Text = "Men";chart1.Series[1].Text = "Women"; chart1.AxisX.Labels[0] = "A";chart1.AxisX.Labels[1] = "B";chart1.AxisX.Labels[2] = "C"; chart1.Data[0, 0] = 15; chart1.Data[0, 1] = 11; chart1.Data[0, 2] = 14; chart1.Data[1, 0] = 9; chart1.Data[1, 1] = 7; chart1.Data[1, 2] = 8;
  5. How to disable a toolbar button (put in grey state)?
  6. Hi, Does the control support changing the origin to be a value other than zero in numerical axis? Detailly, if a numerical axis has valuse of (5, 10, 15, 20, 25, 30) and if I want to make 20 to be the origin point, (5, 10, 15) be treated as negative part of the axis and (25, 30) be the positive part of the axis, is there feature in the control doing this? Thanks, Piiguu
  7. Thank you for your help, Randy. It works now. Thanks, Piiguu
  8. Hi, When the mouse is hovering over an AxisSection, a yellow tooltip of "from xxx to xxx" is displayed. Any way to disable it? Thanks, Piiguu
  9. Hi Guys, I would appreciate if you can help me with this. I am coding a chart to have the ability to switch betwen Scatter chart and other types of chart (say Line chart). In Scatter chart, I am using manual scales for both axis X and Y, while in Line chart I reset axis X to be autoscale and keep axis Y in manual scale. The problem is when the chart is switched from Scatter to Line, the labels in Axis X of the Line chart are in a messy state. The following is the code to reproduce it. What do I miss in this case? I appreiciate if you can help me. // First show a scatter chart chart1.Gallery = Gallery.Scatter;chart1.AxisX.AutoScale = false; chart1.AxisX.ResetScale(); chart1.AxisY.AutoScale = false; chart1.AxisY.ResetScale(); chart1.AxisX.DataFormat.Format = AxisFormat.Percentage;chart1.AxisX.LabelsFormat.Format = AxisFormat.Percentage; chart1.AxisY.DataFormat.Format = AxisFormat.Percentage;chart1.AxisY.DataFormat.Format = AxisFormat.Percentage; chart1.Data.Clear(); chart1.Data.Series = 5; chart1.Data.Points = 1; chart1.Data.X[0, 0] = 0.025; chart1.Data.Y[0, 0] = 0.016; chart1.Data.X[1, 0] = 0.036; chart1.Data.Y[1, 0] = 0.057; chart1.Data.X[2, 0] = 0.010; chart1.Data.Y[2, 0] = 0.008; chart1.Data.X[3, 0] = 0.016; chart1.Data.Y[3, 0] = 0.014; chart1.Data.X[4, 0] = 0.033; chart1.Data.Y[4, 0] = 0.048; chart1.AxisX.Min = 0.0; chart1.AxisX.Max = 0.06; chart1.AxisX.Step = 0.01; chart1.AxisY.Min = 0.0; chart1.AxisY.Max = 0.06; chart1.AxisY.Step = 0.01; // Second show a line chartchart1.Gallery = Gallery.Lines;chart1.AxisX.AutoScale = true; chart1.AxisX.ResetScale(); chart1.AxisY.AutoScale = false; chart1.AxisY.ResetScale(); chart1.AxisY.DataFormat.Decimals = 1; chart1.AxisY.LabelsFormat.Decimals = 1; chart1.Data.Clear(); chart1.Data.Series = 2; chart1.Data.Points = 5; chart1.Data[0, 0] = 3.6; chart1.Data[0, 1] = 1.0; chart1.Data[0, 2] = 1.6; chart1.Data[0, 3] = 3.3; chart1.Data[0, 4] = 1.2; chart1.Data[1, 0] = 5.7; chart1.Data[1, 1] = 0.8; chart1.Data[1, 2] = 1.4; chart1.Data[1, 3] = 4.8; chart1.Data[1, 4] = 0.6; chart1.AxisY.Min = 0.0; chart1.AxisY.Max = 6.0; chart1.AxisY.Step = 1.0; Thanks, Piiguu
  10. Hi, Currently legend box has a few docking options. Would it be possible to make it floating (without docking to any place)? Thanks.
  11. Hi Carlos, Is there an conversion from Chart FX 5.1 to 6.2? Thanks, piiguu
  12. Hi, I can't make a chart like the following in Chart FX 7 Windows Forms control. I notice I can select 'Shadow' effect in the chart's properties dialog, but merely selecting that doesn't have much effect. I guess the 'Style' and 'Weight' options need to be set as well. But both of them are empty under the 'Shadow' option. Could somebody please point me out the right way? Thanks.
  13. Hello, Our software uses an version of Chart FX 5.1 COM control. I am in the process of upgrading it to Chart FX 7. As we have a collection of chart templates created under the old control, we are going to convert them to be used in Chart FX 7. I try the ChartFX.WinForms.Exporter.exe that is shipped with Chart FX 7 but the converted template doesn't work to the chart in Chart FX 7. When I applied the converted template to the chart in Chart FX 7, the chart only showed "No data availble". Please let me know a way to do a right conversion. Thanks.
  14. Chart object has properties like PlotAreaBackground, PlotAreaColor and PlotAreaMargin. But it doesn't have something like PlotAreaRectangle. Is there way to work it out? Thanks.
  15. I want some customized texts be displayed in the headers, such as 'hello' | 'world' etc.
  16. Hi, By default column headings in data grid of scatter chart are like "1", "2"...etc. How can they be changed? The following code shows the fact, chart1.Gallery = Gallery.Scatter; chart1.Data.Series = 2; chart1.Data.Points = 1; chart1.Data.Y[0, 0] = 10; chart1.Data.Y[1, 0] = 20; chart1.Data.X[0, 0] = 30; chart1.Data.X[1, 0] = 60; chart1.Series[0].Text = "S1"; chart1.Series[1].Text = "S2";chart1.DataGrid.Visible = true; Thanks.
  17. Hi, is there way to get the rectangle of plot area? Thanks.
  18. Hi, is there way to disable data grid scrolling and wrap the header text if necessary? Thanks.
  19. Hi Is there a way of allowing the columns in the data grid to be sized by the actual length of that column's header text instead of the largest header there is? Can the header texts be wrapped? Thanks
  20. Hi, I am using Chart FX 7 Windows Forms control. I am about to create a customized palette. But I can't find the palette compiling tool CfxResPkg.exe. It is not shipped with the control package. Where can I get it? Thanks.
  21. Thanks for the help, Juan. This is all I want to know so far.
  22. I saw the charts posted in the Chart Gallery all have glassy effect (i.e. the bars are transparent to some extent). I am using Chart FX 7 windows forms control, but the chart doesn't appear to show in glassy. Is there ways to do it? Thanks. ConstanteLineDrag.zip
×
×
  • Create New...