Search found 1202 matches

by Marc
Thu Dec 11, 2003 9:10 am
Forum: ActiveX
Topic: Multiple colors on a line Serie
Replies: 4
Views: 14008

Hello, The following syntax should work ok: m_Chart1.Series(1).SetPointColor(2,RGB(0,255,0)); You mention you've tried SetPointColor without success, perhaps there's a different issue. I've tested this with a LineSeries. Please check the syntax and let us know if the problem still isn't cleared up. ...
by Marc
Thu Dec 11, 2003 9:01 am
Forum: ActiveX
Topic: Converting from v4 to v6, MS C++, font error
Replies: 1
Views: 7910

Hello, I've had a look at this upgrading a VC++ project made with a prior version of TeeChart. It seems the problem lies with the upgrade tool, I'll make a note for us to fix the problem for the next release. To manually resolve the problem, go to the 'FileView' section of your project and select an...
by Marc
Thu Dec 11, 2003 8:32 am
Forum: ActiveX
Topic: Unpredictable graph quality
Replies: 6
Views: 17531

Hello, Ok, I may have misunderstood, I thought that all applications on the same server were behaving in the same way. That not being the case, you do have a workaround at least, I'm unaware of what other factors may explain the differences of palette between one application and another on the same ...
by Marc
Wed Dec 10, 2003 9:58 pm
Forum: ActiveX
Topic: Unpredictable graph quality
Replies: 6
Views: 17531

Hello Raj, This may be due to the graphics card on the server that is generating the Chart images. If the graphics card has a low colour specification TeeChart’s use of colour is limited too. There may be a software solution though I’m not sure what that may be at the moment. If the problem is due t...
by Marc
Wed Dec 10, 2003 2:51 pm
Forum: ActiveX
Topic: VerticalAxisCustom property
Replies: 5
Views: 16146

In the last post I should have mentioned that for the VC++ code to work you need to place an Edit box on the form.

Regards,
Marc Meumann
Steema Support
by Marc
Wed Dec 10, 2003 2:49 pm
Forum: ActiveX
Topic: VerticalAxisCustom property
Replies: 5
Views: 16146

Hello nefis, There is no internal checking in the put or get of the TeeChart Series VerticalAxisCustom property that might cause this problem. -1 reports that TeeChart has been unable to locate a Vertical Custom Axis associated with this Series, You mention you are adding a Custom Panel to get the i...
by Marc
Thu Nov 27, 2003 12:19 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35905

Hello, In the sample from the FAQ it should work if you comment out the aSeries.SetNumZValues line. (it worked here with that change). At least it'll work as a TeeChart AX v3 and v4 project. ...To use it with later versions of TeeChart it'll need to be updated with the update utilities ..or rebuilt,...
by Marc
Mon Nov 24, 2003 9:36 am
Forum: .NET
Topic: Labels.Separation bug?
Replies: 4
Views: 14371

Hello, I can't reproduce this using a basic Chart with a Line Series. Please could you let us know what factors we need to set to reproduce the problem Chart or send us an exported .ten file of the Chart (to support@steema.com) The separation property may have the effect of bunching as it overrides ...
by Marc
Mon Nov 24, 2003 9:26 am
Forum: .NET
Topic: Series Marks show improperly (axis range related)
Replies: 3
Views: 13962

Hello, Here's an interim workaround that you might like to use. It uses the Series GetSeriesMark event to suppress Marks outside of the Axis range. private void line1_GetSeriesMark(Steema.TeeChart.Styles.Series series, Steema.TeeChart.Styles.GetSeriesMarkEventArgs e) { if ((series.XValues[e.ValueInd...
by Marc
Sun Nov 23, 2003 11:38 pm
Forum: .NET
Topic: Series Marks show improperly (axis range related)
Replies: 3
Views: 13962

Hello,

Thanks for the information. This appears to be a bug, a fix will be included in the next maintenance release. If we see an interim workaround we'll post it here.

Best regards,
Marc Meumann
Steema Support
by Marc
Sun Nov 23, 2003 11:36 pm
Forum: .NET
Topic: Series Marks show improperly (axis range related)
Replies: 3
Views: 13962

Hello,

Thanks for the information. This appears to be a bug, a fix will be included in the next maintenance release. If we see an interim workaround we'll post it here.

Best regards,
Marc Meumann
Steema Support
by Marc
Sun Nov 23, 2003 11:28 pm
Forum: .NET
Topic: Is this possible - display an icon on chart?
Replies: 3
Views: 13722

Hello, You can use the TeeChart Draw method to render an image at any location. eg. private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g) { tChart1.Graphics3D.Draw(new Rectangle(20,20,80,80),imageList1.Images[1]); } <br> The above code renders an image at a fixed locati...
by Marc
Thu Nov 20, 2003 7:06 pm
Forum: ActiveX
Topic: App can't get past call to Create() for the CTChart object
Replies: 2
Views: 13003

Hello, I assume from: "If those workstations run the code that was compiled on the licensed machine they have no such problem" ..that the teechart6.ocx file is installed and registered on both machines. Please check that though as really that is the only likely difference between an installation mad...
by Marc
Thu Nov 20, 2003 6:31 pm
Forum: ActiveX
Topic: Use of checkboxes in the legend
Replies: 1
Views: 9847

Hello,


...to enable/disable Series in the Chart via code?

That would be:
<pre>
TChart1.Series(xx).Active= True/False
</pre>
Where xx is the Series Index

Best regards,
Marc Meumann
Steema Support
by Marc
Thu Nov 20, 2003 6:28 pm
Forum: ActiveX
Topic: OCX in web pages
Replies: 7
Views: 23315

Hello Øyvind, The TeeChart ocx on the webform works like an <object> on a conventional web page. It should call a script (another asp/aspx file) to create the contents that will be exported to the Chart on the browser, a native tee template as a stream. Eg. The WebForm.aspx page will contain an even...