Search found 6 matches

by Ssnsam
Mon Oct 27, 2008 7:53 am
Forum: ActiveX
Topic: Flashing Bottom Axis Labels
Replies: 1
Views: 3260

Flashing Bottom Axis Labels

Hello,

I want the Labels of the bottom axis to flash when the value is under some value.

I have a Bar graph. If the bar value is 0, then the bottom axis label should flash in different colours. How can I achieve this in TChart ActiveX 8.

Regards
by Ssnsam
Tue Oct 21, 2008 5:42 am
Forum: ActiveX
Topic: Issuw with TChart8 ActiveX Axis Labels
Replies: 1
Views: 3372

Issuw with TChart8 ActiveX Axis Labels

Hello, I have chart of type scbar. Some of the labels in the bottom axis are not shown. If the label length is long it s not shown. I tries doing the same with edit chart in the user Interface, then all the labels are shown. The following code I have written. m_oChart.AddSeries(scBar); m_oChart.GetP...
by Ssnsam
Mon Oct 06, 2008 6:41 am
Forum: ActiveX
Topic: Using Annotation in place of Mark object
Replies: 1
Views: 3180

Using Annotation in place of Mark object

Hello, I have a Bar chart. I am trying to show text in Annotation tool in the same position as the Mark object. But the position of the Annotation is not in the center of the bar.The following code I am using to set the position of the annotation. oMarks = oChart.Series(0).GetMarks(); oMarks.SetVisi...
by Ssnsam
Thu Aug 21, 2008 2:14 am
Forum: ActiveX
Topic: Setting Mark Text
Replies: 1
Views: 3413

Setting Mark Text

I am trying to set Mark Text like Manual in the manual , it's written as VB syntax but I think it is not working in VC++ ( i tested in the VC6 , vs 2008 ) This Code always make error Message "Member not found" and not able to set Mark Text m_chart.AddSeries(0); m_chart.ChangeSeriesType(0,scLine); m_...
by Ssnsam
Thu Jun 19, 2008 7:42 am
Forum: ActiveX
Topic: Setting Individual Mark Label
Replies: 3
Views: 5001

Plz Help me :<

I tried that way already.
It works fine.
but, in that way , Bottom Axis Text will show that text ,too.
because I want X-axis name to be as a Text.

Confilicting Code is like below.

Code: Select all

(*m_pChart).GetAxis().GetBottom().GetLabels().SetStyle(talText);
by Ssnsam
Tue Jun 17, 2008 1:05 am
Forum: ActiveX
Topic: Setting Individual Mark Label
Replies: 3
Views: 5001

Setting Individual Mark Label

I am trying to Set Normal Text to Mark. I used the code below (I am using Visual Studio 2008 Professional Edition.) --below--- long lSeriesColor = (*m_pChart).Series(iSeriesAnalyzed).GetColor(); long what = (*m_pChart).Series(iSeriesAnalyzed).AddXY(wcstod(strX,NULL),wcstod(strY,NULL),strLabel,lSerie...