Search found 11 matches
- Thu Mar 31, 2016 8:01 pm
- Forum: ActiveX
- Topic: Deploy TeeChart ActiveX 8 OCX using Registration-free COM
- Replies: 1
- Views: 9635
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...
- Thu Oct 14, 2010 1:34 pm
- Forum: ActiveX
- Topic: Problem on BottomAxis ticks and labels
- Replies: 4
- Views: 8190
Re: Problem on BottomAxis ticks and labels
It works! Thanks for the help.
- Wed Oct 13, 2010 8:47 pm
- Forum: ActiveX
- Topic: Problem on BottomAxis ticks and labels
- Replies: 4
- Views: 8190
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 ...
- Fri Oct 08, 2010 7:41 pm
- Forum: ActiveX
- Topic: Problem on BottomAxis ticks and labels
- Replies: 4
- Views: 8190
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?
How do I disable that?
- Thu Apr 22, 2010 1:49 pm
- Forum: ActiveX
- Topic: Export will not resize
- Replies: 2
- Views: 5125
Re: Export will not resize
It works. Thanks.
- Tue Apr 20, 2010 6:54 pm
- Forum: ActiveX
- Topic: Export will not resize
- Replies: 2
- Views: 5125
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 ...
- Tue Oct 13, 2009 8:17 pm
- Forum: ActiveX
- Topic: Removing Tools
- Replies: 7
- Views: 10011
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.
Thanks again.
- Tue Oct 13, 2009 1:55 pm
- Forum: ActiveX
- Topic: Removing Tools
- Replies: 7
- Views: 10011
Re: Removing Tools
Here a simple example project to show the problem I'm having.
Thanks in advance.
Thanks in advance.
- Wed Oct 07, 2009 1:24 pm
- Forum: ActiveX
- Topic: Removing Tools
- Replies: 7
- Views: 10011
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...
- Tue Oct 06, 2009 9:46 pm
- Forum: ActiveX
- Topic: Removing Tools
- Replies: 7
- Views: 10011
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...
- Thu Jul 16, 2009 9:01 pm
- Forum: ActiveX
- Topic: Create an instance AxTChart in my worker thread
- Replies: 1
- Views: 4367
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...