Search found 7 matches

by jalen
Tue Nov 24, 2009 7:06 pm
Forum: ActiveX
Topic: TeeChart5 Language support
Replies: 4
Views: 6301

Re: TeeChart5 Language support

thanks, I'll try that.
by jalen
Mon Nov 23, 2009 8:25 pm
Forum: ActiveX
Topic: TeeChart5 Language support
Replies: 4
Views: 6301

Re: TeeChart5 Language support

What is the earliest version of TeeChart Ax that is Unicode enabled? I'm using 7.0.0.6 and it seems that it is not.
by jalen
Mon Jan 09, 2006 4:17 pm
Forum: ActiveX
Topic: Show only 0-3 Data Point Labels in a Horizontal Bar Graph
Replies: 3
Views: 4691

Show only 0-3 Data Point Labels

Thanks for your feedback. Over the weekend I've discovered some of the options you've mentioned. The OnGetSeriesMark/MarkText option was the most useful, however I had to my design structure to use this approach. The Marks. MarkText feature is the best option because the positioning and other attrib...
by jalen
Sat Jan 07, 2006 4:57 pm
Forum: Wishes and ideas
Topic: Custom Marks Text
Replies: 1
Views: 7545

Custom Marks Text

It would be extremely helpful for me to be able to set the Marks.Style property to "Custom." Along with this enumeration/option would be the ability to manually/programmatically set the Text for a given item Similar to this syntax : tChart.Series(0).Marks.Item(x).Text = "My Custom Text" '(x = row in...
by jalen
Fri Jan 06, 2006 11:22 pm
Forum: ActiveX
Topic: Show only 0-3 Data Point Labels in a Horizontal Bar Graph
Replies: 3
Views: 4691

Show only 0-3 Data Point Labels in a Horizontal Bar Graph

I'm using v7.0.0.6, and I would like to have custom labels to appear to right of _some_ bars in a Horizontal Bar chart. My initial attempts have been with the Marks collection, but it seems that I can't change the text values at run-timef, and I can't seem to have only a couple Mark text values appe...
by jalen
Fri Jan 06, 2006 11:17 pm
Forum: ActiveX
Topic: Setting custom y-axis labels at runtime
Replies: 1
Views: 3341

problem solved

Never mind.... I found that the graph.series(x).PointLabel property is what I need to use...
by jalen
Thu Jan 05, 2006 11:34 pm
Forum: ActiveX
Topic: Setting custom y-axis labels at runtime
Replies: 1
Views: 3341

Setting custom y-axis labels at runtime

I want to set the Y-axis labels on a horizontal bar chart. I want to re-label the bars at run-time. I can access the initial values using the following syntax... TChart.Series(0).ValueMarkText(5) ... however I know that this isn't really what I'm looking for. How do I set the Label text values? Than...