Search found 3132 matches

by Sandra
Tue Dec 09, 2008 9:20 am
Forum: .NET
Topic: Cursor tool Query
Replies: 4
Views: 9413

Hi drillright40! About cursorTool.XValue, Narcís explained on this link how you should set its values, the part of link appear same under code, because you need repeated XValue for chenge the position. cursorTool.XValue = 9; cursorTool.YValue = 0; cursorTool.XValue = 9; Best Regards Sandra Steema Su...
by Sandra
Thu Dec 04, 2008 12:12 pm
Forum: .NET
Topic: Cursor tool Query
Replies: 4
Views: 9413

Hello drillright40! We find a bug, when you assigned cursorTool.Series=dataHistogram I recomended that coments this line of code: cursorTool.Pen.Color = Color.LightGreen; cursorTool.Style = Steema.TeeChart.Tools.CursorToolStyles.Vertical; //cursorTool.Series = dataHistogram; Can you please check if ...
by Sandra
Thu Dec 04, 2008 10:37 am
Forum: .NET
Topic: Zooming waterfall
Replies: 3
Views: 7023

Hi Janne! We are not sure to understand which is your exact problem but we don't see anyting strange zooming a WaterFall chart using TeeChart's standard zooming features described in Tutorial 11 - Zoom and Scroll . You'll find tutorials at TeeChart's program group. Could you please send us a simple ...
by Sandra
Thu Dec 04, 2008 9:47 am
Forum: VCL
Topic: Labels dropped in THorizBarSeries series
Replies: 7
Views: 13063

Hello TestAlways! We can run your project.exe and we can see your problem, but when we compile your project and execute it in our computers the problem can't be reproduced. Problem could be with Chart.LeftAxis.LabelsSeparation, because if you assigned a value to this property, the label reserves spe...
by Sandra
Thu Dec 04, 2008 9:23 am
Forum: .NET
Topic: 3D Waterfall chart
Replies: 1
Views: 5577

Hi awata! You need populate such explain in this link: http://www.teechart.net/support/viewtopic.php?t=5312 For populate chart such explain in the link, you need next code: private void Form1_Load(object sender, EventArgs e) { Waterfall waterfall1 = new Waterfall(tChart1.Chart); waterfall1.Irregular...
by Sandra
Wed Dec 03, 2008 10:52 am
Forum: VCL
Topic: TChart Y Label
Replies: 4
Views: 9185

Hi venk! Nothing happens, if you work with marks is very similar Y labels, you could used: Series1.Marks.Style:=smsLabel; or also you could used Marks event: procedure Series1GetMarkText(Sender: TChartSeries; ValueIndex: Integer; var MarkText: String); I hope than I can resolved your problem :D Best...
by Sandra
Wed Dec 03, 2008 10:07 am
Forum: VCL
Topic: TChart Y Label
Replies: 4
Views: 9185

Hello venk! if you set Y Label to a new string value, you could doing of 2 diferents ways: Using: Chart1.Axes.Left.LabelStyle:=talText; This method change value of left axes for Series value, but if you interested change value of left axes for either string you could used event: procedure Chart1GetA...
by Sandra
Wed Dec 03, 2008 8:45 am
Forum: VCL
Topic: Labels dropped in THorizBarSeries series
Replies: 7
Views: 13063

Hi! TestAlways Thanks for your example project. It works fine for us here using v8.04. Could you please check if this version solves the problem at your end? Also notice that GetMarkText event is not assigned in your project, should it be assigned? If yes the variables you are assigning to MarkText ...
by Sandra
Tue Dec 02, 2008 9:48 am
Forum: VCL
Topic: Labels dropped in THorizBarSeries series
Replies: 7
Views: 13063

Hi!

Hello TestAlways! We can not reproduce it with v8.04 I recommeded that you install the version 8.04, but if your problem is not solved, Could you please send us a simple example project we can run "as-is" to reproduce the problem here? You can either post your files at news://www.steema.net/steema.p...
by Sandra
Thu Nov 27, 2008 9:51 am
Forum: .NET
Topic: limit the bars to be displayed
Replies: 19
Views: 22374

Hello shikha! if you see 3 bars on the chart when user enter 3 or the other number ,you can do: int n; n = Convert.ToInt32 (textBox1.Text); tChart1.Axes.Bottom.Increment = 1; tChart1.Page.MaxPointsPerPage = n; But,if then you see all bars, you can put buttons next and previous in form, for exemple: ...
by Sandra
Mon Nov 24, 2008 9:40 am
Forum: VCL
Topic: bubble labeling w/delphi
Replies: 1
Views: 5350

Hi!

Hi! kualoa1 You just need to use AddBubble method override which adds a label for each bubble, which you already do. For example: Series1.AddBubble(X,Y,Radius,YourLabelString); Then you may also need to set series marks visible: Series1.Marks.Visible:=true; 2) if you want bubble show "name" value wh...
by Sandra
Fri Nov 14, 2008 9:57 am
Forum: VCL
Topic: How to clear the dot line?
Replies: 2
Views: 6460

Hi!

Hello wwp3321,

You can hide Axes grid lines like this, for example:

Code: Select all

        Chart1.Axes.Bottom.Grid.Visible:=False;
        Chart1.Axes.Left.Grid.Visible:=False;

Best Regards,

Sandra.