Search found 11 matches

by PS Soluções
Thu Mar 31, 2016 8:01 pm
Forum: ActiveX
Topic: Deploy TeeChart ActiveX 8 OCX using Registration-free COM
Replies: 1
Views: 8897

Deploy TeeChart ActiveX 8 OCX using Registration-free COM

Hi, I've been trying to deploy my application with TeeChart ActiveX without registering the OCX. I seems Microsoft lets you deploy the OCX in the same folder as your application and through a .manifest file, it is possible to use the OCX without registration. I have tried several tutorials and tools...
by PS Soluções
Thu Oct 14, 2010 1:34 pm
Forum: ActiveX
Topic: Problem on BottomAxis ticks and labels
Replies: 4
Views: 7885

Re: Problem on BottomAxis ticks and labels

It works! Thanks for the help.
by PS Soluções
Wed Oct 13, 2010 8:47 pm
Forum: ActiveX
Topic: Problem on BottomAxis ticks and labels
Replies: 4
Views: 7885

Re: Problem on BottomAxis ticks and labels

Hi, I'm using TeeChart Pro ActiveX v8.0.0.8 . Plase, try sample my code. When showing only FastLineSeries, ticks behave as usual. When VolumeSeries is also Active, the evenly spaced "ticks" on bottom axis disappear, showing only ticks for the "labels" of the volume series. I don't know if this is a ...
by PS Soluções
Fri Oct 08, 2010 7:41 pm
Forum: ActiveX
Topic: Problem on BottomAxis ticks and labels
Replies: 4
Views: 7885

Problem on BottomAxis ticks and labels

Whenever I activate a VolumeSeries in my chart, the BottomAxis labels and ticks change to accomodate the series' Marks.

How do I disable that?
by PS Soluções
Thu Apr 22, 2010 1:49 pm
Forum: ActiveX
Topic: Export will not resize
Replies: 2
Views: 4932

Re: Export will not resize

It works. Thanks.
by PS Soluções
Tue Apr 20, 2010 6:54 pm
Forum: ActiveX
Topic: Export will not resize
Replies: 2
Views: 4932

Export will not resize

When exporting a chart using chart.Export.asPNG.SaveToStream() the result will always have the same size, even after a chart resize. Procedure: 1. Create a chart 2. Export using Export.asPNG.SaveToStream(). The resulting image will be the same size as the chart. 3. Resize the chart (or the for that ...
by PS Soluções
Tue Oct 13, 2009 8:17 pm
Forum: ActiveX
Topic: Removing Tools
Replies: 7
Views: 9611

Re: Removing Tools

Thanks for the quick reply. Both suggestions for a workaround were close to what I thought initially and I'll implement them.

Thanks again.
by PS Soluções
Tue Oct 13, 2009 1:55 pm
Forum: ActiveX
Topic: Removing Tools
Replies: 7
Views: 9611

Re: Removing Tools

Here a simple example project to show the problem I'm having.

Thanks in advance.
by PS Soluções
Wed Oct 07, 2009 1:24 pm
Forum: ActiveX
Topic: Removing Tools
Replies: 7
Views: 9611

Re: Removing Tools

Is this code correct? I want to go into MyChart.Tools and remove a specific tool in which I have a reference (in the variable toolToRemove) but not its index. private void button1_Click(object sender, EventArgs e) { TeeChart.ITools toolToRemove = toolCollection[0]; // here I select the tool to be re...
by PS Soluções
Tue Oct 06, 2009 9:46 pm
Forum: ActiveX
Topic: Removing Tools
Replies: 7
Views: 9611

Removing Tools

Hi, I'm having problems trying to remove a Tool from the chart.Tools collection. I'm using TeeChart ActiveX and C#. First, I add tools using this code. I keep all Toos in a Array. int index = chart.Tools.Add(EToolClass.tcColorLine); ITools tool = mChart.Tools.get_Items(index); // code to set tool pr...
by PS Soluções
Thu Jul 16, 2009 9:01 pm
Forum: ActiveX
Topic: Create an instance AxTChart in my worker thread
Replies: 1
Views: 4257

Create an instance AxTChart in my worker thread

I would like to create an instance o AxTChart inside my class (I'm working with C#), setup some plots, get an image. The problem is that this function is inside a method being executed in a worker thread and there is no Form associated with it. When I do "new AxTChart()" I get an thread exception th...