Jump to content
Software FX Community

anwar

Members
  • Posts

    5
  • Joined

  • Last visited

anwar's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, How to call MouseDown event at client side. I wanted to call this event in MOSS webpart at clent side. Thanks, Anwar
  2. I am not able to display annoatation in Line charts.If I convert o Bar chart if works fine. Can you please send me the sample code. I am using chartFx 7. Thanks, Anwar
  3. I was trying to add Annotation using below code <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Annotations annots = new Annotations(); annots.EnableUI = true; annots.ToolBar.Visible = true; annots.Chart = chart; annots.EnableViewState = true; chart.Extensions.Add(annots); AnnotationText text = new AnnotationText(dr["Annotation"].ToString()); text.Attach(GetXAxisPosition(chart, Convert.ToDateTime(dr["Time"]).ToOADate()), Convert.ToDouble(dr["Value"])); text.Color = Color.Red; text.PlotAreaOnly = true; text.AllowMove = false; annots.List.Add(text); I wanted to display annotation in MOSS webpart? I can see the annotation toolbar. But no annotation at all. Can you please help me?
×
×
  • Create New...