Search found 9527 matches

by Yeray
Fri Feb 27, 2009 2:45 pm
Forum: .NET
Topic: Releases 6, 12 Feb 2009 incompatible with previous releases.
Replies: 8
Views: 10412

Hi georgez, I've tested and reproduced the problem with your ten file. Now, I'm trying to create a chart similar to yours to identify what is the property (or the combination of properties) that is causing the problem. Could you please, tell me if you see anything I could miss or could you please se...
by Yeray
Fri Feb 27, 2009 12:44 pm
Forum: ActiveX
Topic: teechart 8 Garbled:Page Language Chinese,Page Encode UTF8
Replies: 3
Views: 5515

Hi Jon, I couldn't reproduce the problem here. That makes me think that you could be trying to show some texts in a language not correctly installed in your machine. Could it be possible? I'm afraid that we only have a korean machine to do this type of tests, so I've simplified a little bit your cod...
by Yeray
Fri Feb 27, 2009 11:01 am
Forum: VCL
Topic: Writing Gantt valuies back to database
Replies: 2
Views: 5462

Hi SpringerRider, I think you should use OnResizeBar and OnDragBar events to retrieve the new gantt values and do your sql queries. Here is how you could obtain the modified values in these events: procedure TForm1.ChartTool1DragBar(Sender: TGanttTool; GanttBar: Integer); begin Chart1.Title.Text[0] ...
by Yeray
Fri Feb 27, 2009 10:19 am
Forum: ActiveX
Topic: teechart 8 Garbled:Page Language Chinese,Page Encode UTF8
Replies: 3
Views: 5515

Hi Jon, It's strange, I've tested it with the following code and it works fine with TeeChart v8 Multilanguage Unicode. public Form1() { InitializeComponent(); InitializeChart(); } private void InitializeChart() { axTChart1.AddSeries(TeeChart.ESeriesClass.scPoint); axTChart1.Series(0).FillSampleValue...
by Yeray
Fri Feb 27, 2009 9:57 am
Forum: ActiveX
Topic: Back Image Custom Position
Replies: 3
Views: 6867

Hi nbp,

Have you tried doing something like this?

Code: Select all

m_Chart1.GetPanel().GetBackImage().SetMode(3);
m_Chart1.GetPanel().GetBackImage().SetLeft(100);
m_Chart1.GetPanel().GetBackImage().SetTop(100);
by Yeray
Thu Feb 26, 2009 3:58 pm
Forum: VCL
Topic: Pie Series Options tab is blank in the editor
Replies: 3
Views: 5581

Hi Jørgen,

Now I could reproduce the problem and I've added it to the wish list to be fixed as soon as possible (TV52013899).

It seems that this problem only happens for pie series and the editor's tree mode.
by Yeray
Thu Feb 26, 2009 10:27 am
Forum: .NET
Topic: show selected bar on gantt chart
Replies: 12
Views: 13979

Hi Pujol, The gantts are shown taking in consideration their order in the series' valuelist. So, to show a gantt hided below another, you could swap the gantt for the first one. Here there is a method you could use: private void GantToFront(int ValueIndex) { double tmp = gantt1.StartValues[0]; gantt...
by Yeray
Wed Feb 25, 2009 3:16 pm
Forum: ActiveX
Topic: Canvas member ceases to exist on Export
Replies: 4
Views: 6244

Hi Bruce,

I haven't been able to reproduce the problem here. At the same time, I'd like to apologize because VFP isn't very familiar to us. So, could you please try to explain the exact steps to reproduce it here?

Thanks in advance.
by Yeray
Wed Feb 25, 2009 12:23 pm
Forum: .NET
Topic: Legend-click event
Replies: 1
Views: 3668

Hi asupriya, The color is stored at LinePen.Color. The following code tests it. If ((Index <> -1) And (MyChart.Series.Count >= Index)) Then Series = CType(MyChart.Series(Index), Steema.TeeChart.Styles.FastLine) Steema.TeeChart.Editors.PenEditor.Edit(Series.LinePen) TChart1.Header.Font.Color = Series...
by Yeray
Wed Feb 25, 2009 12:08 pm
Forum: .NET
Topic: CursorTool intersection with multiple series
Replies: 8
Views: 12886

Hi asupriya, To customize your text box to show I recommend you to use an annotation tool instead of mark tips tool. Here there is an example of how you could show some info of the nearest point when the cursor tool is moved. If I understand well, you are trying to do something similar to this. publ...
by Yeray
Wed Feb 25, 2009 10:58 am
Forum: VCL
Topic: THorizBarSeries - scroll bar bug
Replies: 9
Views: 11564

Hi marder, Could you please verify that your TScrollBar has a is getting position values (ScrollPos) in your series' range? I mean, the scrollbar.min has the same value of your series Y min and the scrollbar.max has your series' max Y value (-PointsShown). If everything seems ok, could you try to ma...
by Yeray
Wed Feb 25, 2009 10:02 am
Forum: VCL
Topic: Rendering WMF images
Replies: 1
Views: 3856

Hi Edward,

Yes you are right. It seems that shadow's transparency of the annotation tool isn't exported well. Have you noticed this with any other shadow? I've added it to the wish list to be fixed in further releases (TV52013895).
by Yeray
Wed Feb 25, 2009 9:08 am
Forum: VCL
Topic: Returning the X axis label when moving mouse
Replies: 3
Views: 7024

Hi Phineas, Excuse me. I think I didn't understand well your request. To retrieve the corresponding value in bottom axis for an x point, you could do as follows: procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); begin caption := floattostr(Chart1.Axes.Bottom.CalcP...
by Yeray
Wed Feb 25, 2009 8:39 am
Forum: VCL
Topic: Duplicate a chart
Replies: 2
Views: 4694

Hi Calou, I'm afraid there isn't a single function to do this. The simplest way probably is : - Create your new chart at runtime - Save your old chart in a tee file - Import the tee file to the new chart - Remove all series or clear the data of the new chart - Verify and copy the original's chart pr...
by Yeray
Tue Feb 24, 2009 3:37 pm
Forum: VCL
Topic: MakeIsoAxis
Replies: 5
Views: 6051

Hi Jerry, I've tested this with several windows and screens and now I think I've found the problem. It seems that having a comfortable proportional resolution the demo apparently works fine (or the error is small) and when the resolution is "strange" the demo doesn't return square axis. I've added t...