Jump to content
Software FX Community

amankazi

Members
  • Posts

    13
  • Joined

  • Last visited

Everything posted by amankazi

  1. I had already seen the format of axis, but this doesn't speak about the rules I have specified. Please have a look at the links below, here you can find more details. I want my Y-axis labels to have this rules. 1-2-5 rule http://books.google.co.in/books?id=Mome27I8KgsC&pg=PA20&lpg=PA20&dq=1+2+5+rule+in+numerical+scale&source=web&ots=CugjCE8Kee&sig=XbzYJ7tg14crvo9Vn6cfz281uRE&hl=en&sa=X&oi=book_result&resnum=4&ct=result#PPA20,M1 Significant digit http://en.wikipedia.org/wiki/Significant_digit
  2. In general chart can be drawn for, Graphing Statistics & Data. I have to represent the Y-axis labels using the rules of Significant digit and 1-2-5 principal. Does, chartFx supports this?
  3. Greetings, The problem exist with chartFx code which is fixed with an hotfix. Please install it from the link below. http://support.softwarefx.com/cfxnet70/update/hotfix/hotfix.htm Thanks, Amaan Kazi
  4. Greetings, ChartFx dosen't support customizing of Legend box. Please have a look at the link added below. http://mysupport.softwarefx.com/Help/SupportTool/History.aspx?IID=fcc91fed-d88f-493c-99a1-829a43a7549c
  5. Annotation is working fine after importing the .xml or binary file the annotation is not drawn on chart. What could be the issue? There is no error even the annotation is not drawn.
  6. amankazi

    Y-axis

    User can change the color of the series by picking it from color pallet(User can right click on the series and change the color). To do this I am using the CommandID "29468", when user changes the color at runtime the color the Y axis should also change. But it is not changing, as I am using the predefined CommandID, I am not sure how I can change the color of the Y-axis at runtime.
  7. I archived what I was looking at, following is the code written in UserCommand to improve the performance of the chart. ///Setting the Background of the graph to improve the performanceif (chartHistoricGraph.Background.ToString() == "Solid Color") chartHistoricGraph.Background = new GradientBackground(GradientType.Vertical);else chartHistoricGraph.Background = new SolidBackground(System.Drawing.Color.White);break;
  8. Greetings, In one of the recent mails from ChartFX I read that, Gradient effect on chart causes performance. If so, can I turn it Off/On ? If yes, How can I ?
  9. amankazi

    Y-axis

    Following is the code how I got the exact Y axis on which user has clicked. int IntSeriesIndex = 0; AxisY YAxisObject = (AxisY)e.Object;for (int IntYAxisCount = 0; IntYAxisCount < chartHistoricGraph.AxesY.Count; IntYAxisCount++) { if (YAxisObject.Equals(chartHistoricGraph.AxesY[intYAxisCount])) { string LegendName = chartHistoricGraph.AxesY[intYAxisCount].Title.ToString();for (int IntSeriesCount = 0; IntSeriesCount < chartHistoricGraph.Series.Count; IntSeriesCount++) { if (chartHistoricGraph.Series[intSeriesCount].Text == LegendName.ToString()) { IntSeriesIndex = IntSeriesCount; } } break; } } I am facing one more issue, on change of the color of series, the dynamically added Yaxis color is not changing.
  10. amankazi

    Y-axis

    Can you please explain the working of Y axis in my scenario with the series? I am comparing it. How will I get the Index of the series to which the Y axis belongs to ? Here is the code snippet for it AxisY temp_Y = (AxisY)e.Object;string SeriesName ; for(IntYAxisCount = 0; IntYAxisCount < chartHistoricGraph.AxesY.Count;IntYAxisCount++){ if(temp_Y.Equals(chartHistoricGraph.AxesY[intYAxisCount])) { SeriesName = chartHistoricGraph.Series[intYAxisCount].Text; break; }}
  11. amankazi

    Y-axis

    When user right clicks on the Y-Axis. How can I get the Y-Axis belongs to which curve ?index?
  12. Hi Frank, Can we change the cursor of the mouse to a Vertical line in side the graph area and get the X and Y axis scale data ? If Yes, please provide a work around.
×
×
  • Create New...