Jump to content
Software FX Community

CarlosAC

Members
  • Posts

    204
  • Joined

  • Last visited

Everything posted by CarlosAC

  1. Hi jusim You can check the 3 properties on XAxis labels: step, angle, and staggered. Please try following code: chart1.AxisX.Step = 1;chart1.AxisX.LabelAngle = 45; also chart1.AxisX.Step = 1;chart1.AxisX.Staggered = true; -- Pipon
  2. Hi jusimPlease contact Software FX Support at support[at]softwarefx[dot]com with a small repro case of this issue.-- Pipon
  3. Hi thealere Unfortunately, there is not a complete Chart FX definition in XML. -- Pipon
  4. Hi jch111 Instead of changing the Legend Box Items position, please try following code: List<SeriesAttributes> allSeries = new List<SeriesAttributes>(); //Adds all series (in current order) to the auxiliar Collection foreach (SeriesAttributes series in chart1.Series) { allSeries.Add(series); } //Iterate from all series and invert the current order foreach (SeriesAttributes series in allSeries) { series.BringToFront(); } I hope it helps. -- Pipon
  5. Hi Charlie If you want to manually set the range to the Y-Axis, please use following code: chart1.AxisY.Min = 0; chart1.AxisY.Max = 0; -- Pipon
  6. Hi Cecilia Daniels I found a workaround for your issue. It will only work if the latest series is the one with Lines gallery type. List<SeriesAttributes> allSeries = new List<SeriesAttributes>();<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> //Adds all series (in current order) to the auxiliar Collection foreach (SeriesAttributes series in chart1.Series) { allSeries.Add(series); } //Iterate from all series and invert the current order foreach (SeriesAttributes series in allSeries) { series.BringToFront(); } I hope it helps. -- Pipon
  7. Hi thealere Yes, Chart FX support the floating bars as the ones in the image. You need to use following code: chart1.openData(COD.VALUES, series, points); chart1.openData(COD.INI_VALUES, series, points); // Add as many as you want chart1.getIniValue().setItem(series, point, value); chart1.getValue().setItem(series, point, value); chart1.closeData(COD.INI_VALUES); chart1.closeData(COD.VALUES); -- Pipon
  8. Hi jusim I was able to reproduce the issue you are reporting. Please contact Software FX Support at support[at]softwarefx[dot]com. The will analyze your issue and provide you with feedback. -- Pipon
  9. Hi jusim <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> You need to provide the X-Axis labels sorted. Chart FX does not sort automatically your data in this case. -- Pipon
  10. Hi Jamu The porperties AllSeries and PointLabels are related to Chart FX 7. Please check current post is under
  11. Hi JulieN<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Please contact Software FX Support at support[at]softwarefx[dot]com. The will provide you with a new installation package for your product. -- Pipon
  12. Hi Jamu Please set value -1 to all gaps. Chart.TopGap = -1; Chart.LeftGap = -1; Chart.RightGap = -1; Chart.BottomGap = -1; -- Pipon
  13. Hi cvarro In order to get latest Chart FX for WPF Hotfix, please check following link: http://support.softwarefx.com/cfxwpf/update/hotfix/hotfix.htm -- Pipon<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
  14. Hi DustinW Chart FX will add the Axis Sections text automatically to the legend box. I have found a way to remove them, please check following code. LegendItemAttributes lia = new LegendItemAttributes(); <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> chart1.LegendBox.ItemAttributes[chart1.AxisX.Sections] = lia; lia.Visible = false; -- Pipon
  15. Hi ricardoarguellojr When you see 2 pies in the same chart is because the data source contains 2 series of data. Unfortunately, you cannot have combine gallery type such as bars and pies in the same chart. For instance, you can combine Lines, Bars and Areas. Also, you can combine Pies and Doughnuts.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Now, regarding your question about different data, Chart FX engine does not allow you to use more than one data source. So, unfortunately, you are not able to use different data as Chart FX data source. -- Pipon
  16. Hi VekiPeki <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Unfortunately, there is no way you can attach the annotation to an specific Axis or Pane. -- Pipon
  17. Hi Emily If you want to invert axis in Chart FX, please try following code: chart1.AllSeries.Horizontal = true; -- Pipon
  18. Hi fxinq1009 You can increase separation of bar modifying the volume of each point. Please check following code: chart1.Point.Volume = 50; Unfortunately, you cannot separate bars for a single x-value. All they will be side by side always.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> -- Pipon
  19. Hi myles.kelman<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> The accessibility writer works as an enhancer Chart FX and is only available with Server based applications. Chart FX 7 Windows Forms is not Section 508 compliant. -- Pipon
  20. Hi sheng This is an unsupported feature in Chart FX, you cannot get directly the OHLC values in order to set them in the Tooltip. But, from spoken with a Chart FX developer, he was able to come up with a work around for you. It involves changing the Text property of every point in the chart and set the tooltip to %L right before the chart gets painted (I was only able to make it work at the PrePaint event). private void chart1_PrePaint(object sender, ChartFX.WinForms.CustomPaintEventArgs e) { if (string.IsNullOrEmpty(chart1.ToolTipFormat)) { for (int i = 0; i < chart1.Data.Points; i++) { chart1.Points.Text = DateTime.FromOADate(chart1.Data.X).ToString().Split(' ')[0] + "\r\n" + "Open: " + chart1.Data[0, i].ToString() + "\r\n" + "High: " + chart1.Data[1, i].ToString() + "\r\n" + "Low: " + chart1.Data[2, i].ToString() + "\r\n" + "Close: " + chart1.Data[3, i].ToString(); } chart1.ToolTipFormat = "%L"; } } I must remind you that this is a workaround over an unsupported feature. Carlos
  21. Hi sheng <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Unfortunately, ToolTipFormat applies to all series, and you cannot set a different ToolTipFormat for an specific series. This is by design. -- Pipon
  22. Hi bander87 Unfortunately, you are not able to set set an specific size of the pie chart. As a workaround, you can modify the chart gaps and so, increase/decrease the size of the pie. Please check following code: chart1.Gaps = new Rectangle(-1, -1, -1, -1); -- Pipon
  23. Hi samiam1029 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Unfortunately, I think you cannot achieve calculating the size of the chart base on number of point. You will need to play with many variables while calculating the width of the chart. For instance: Axis Labels, Chart FX engine will automatically calculate spacing it need to plot labels. Legend Box, depending of the position of the legend box, the plot area can decrease/increase. Take into consideration the user can change the legend box position at run time. Good look. -- Pipon
  24. [font= 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ansi-language: EN-US" lang=EN-US>[font=" 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ansi-language: EN-US" lang=EN-US>Hi patelajk<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> [/font] The issue seems to be related with PSS service in your machine. Please check in your IIS admin console to see if the Chart FX virtual directory is in the same level of your web site. If not, please create the Chart FX virtual directory at the same level. This virtual directory should be linked to ChartFX70 under your installation folder.[/font] [/font] [font= 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ansi-language: EN-US" lang=EN-US>Also, while the PSS Service is not running, are you able to see the Charts? Software FX provide knowledge base articles related with PSS Service, please check following resources: http://support.softwarefx.com/kb/762/2/021.htm]http://support.softwarefx.com/kb/762/2/021.htm'>[/font] [font= 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ansi-language: EN-US" lang=EN-US> http://support.softwarefx.com/kb/762/1/004.htm]http://support.softwarefx.com/kb/762/1/004.htm'>[/font] [font= 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-ansi-language: EN-US" lang=EN-US> Additionally, when you set the render format to .NET, you need to have installed .NET framework on the client machine. Also, you will need to set full trust on it. So, please try setting your framework configuration to full trust. -- Pipon [/font][/font]
  25. Hi Jonny <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> This, seems to be a problem specific with the browser version and not with the chart control itself, however we would like to replicate the behavior to try to help you, for this we would need a simple sample project with your resizing . Does it work on IE 8? -- Pipon
×
×
  • Create New...