Page 1 of 2

Series format "panel".

Posted: Wed Jul 21, 2010 8:29 am
by 9530487
Hello all,

Is it possible to embed the series format panel into another dialog?

What I want to so is have the panel below (Format, Point, General and Marks (I don't want "data source")) in my own dialog so a user can format the series.

Thanks in advance,

Tony.

Re: Series format "panel".

Posted: Wed Jul 21, 2010 11:15 am
by yeray
Hi Tony,

Have you seen the demo at All Features\Welcome !\Components\Chart Editor\Chart Editor dialog?
As you'll see, you can hide some tabs of the Chart Editor.

Re: Series format "panel".

Posted: Mon Jul 26, 2010 6:57 am
by 9530487
Yes, I use the chart editor already.

But I would like to be able to just give the user formatting options for a particular series (so not even let them select the series). All I really want them to see is "format", "point", "general" and "marks", is there any way of doing this?

So far I've duplicated the functionality in my own dialog, but if it can be done already I will use that.

Tony.

Re: Series format "panel".

Posted: Mon Jul 26, 2010 1:51 pm
by 9530487
Another related question.

How do I go about hiding pages from the embedded dialog? The only source code for it in the feature demo is

Private Sub Form_Load()
ChartEditorPanel1.Chart = TChart1
TChart1.Series(0).FillSampleValues 10
Combo1.ListIndex = 0
Combo2.ListIndex = 0
End Sub

And the "Tabs Position"/"Tabs Style" do not seem to do anything.

What I'm trying to do is display this, hide everything apart from the series tab, and draw a window over the part I do not want the user to see.

Tony.

Re: Series format "panel".

Posted: Mon Jul 26, 2010 3:18 pm
by yeray
Hi Tony,
TonyVSUK wrote:But I would like to be able to just give the user formatting options for a particular series (so not even let them select the series). All I really want them to see is "format", "point", "general" and "marks", is there any way of doing this?
I've added it to the wish list to be implemented in future releases (TA05015048). In the meanwhile I'm afraid you should create your custom dialog adding the functionalities you want to it.
TonyVSUK wrote:And the "Tabs Position"/"Tabs Style" do not seem to do anything.
You are right. The properties bellow don't exist in TeeChart ActiveX. They exist and work in TeeChart VCL, they have to be translated to the AX version. I've addie it to the wish list to be implemented in future releases (TA05015049).

Re: Series format "panel".

Posted: Wed Sep 08, 2010 2:17 pm
by 9530487
Yeray wrote:I've added it to the wish list to be implemented in future releases (TA05015048). In the meanwhile I'm afraid you should create your custom dialog adding the functionalities you want to it.

You are right. The properties bellow don't exist in TeeChart ActiveX. They exist and work in TeeChart VCL, they have to be translated to the AX version. I've addie it to the wish list to be implemented in future releases (TA05015049).
Are either of these in the 2010 beta?

Re: Series format "panel".

Posted: Wed Sep 08, 2010 2:26 pm
by narcis
Hi TonyVSUK,

I'm afraid they haven't been implemented yet.

Re: Series format "panel".

Posted: Wed Sep 08, 2010 2:47 pm
by 9530487
Any chance of them making the final release?

Only asking as it will save me possibly days of work replicating the functionality.

Re: Series format "panel".

Posted: Fri Sep 10, 2010 9:08 am
by yeray
Hi TonyVSUK,

I'm afraid that these items hasn't been implemented yet. I've incremented their priority.

Re: Series format "panel".

Posted: Wed Aug 31, 2011 2:47 pm
by 9530487
Has this been implemented yet?

I'm back actively improving the chart capability of my app, and wondering if it's time to move to an alternative chart component.

Re: Series format "panel".

Posted: Thu Sep 01, 2011 1:30 pm
by yeray
Hello Tony,

TA05015048: We are trying to implement it right now. It will probably be included in the next maintenance release that should be published imminently.
TA05015049: Already implemented. It will be included in the next maintenance release.

Re: Series format "panel".

Posted: Fri Sep 02, 2011 1:46 pm
by yeray
Hello Tony,

Just released! Give it a try.
http://www.teechart.net/support/viewtop ... =1&t=12599

Re: Series format "panel".

Posted: Mon Sep 12, 2011 11:05 am
by 9530487
Is this the new CChartEditorPanel class?

I'm not sure how to use it. I've created a CChartEditorPanel class, but there are no create/show window methods available.

I'm using Microsoft Visual Studio 2008.

Re: Series format "panel".

Posted: Mon Sep 12, 2011 11:42 am
by narcis
Hi Tony,

No, you should use ShowInEditor property, for example:

Code: Select all

      axTChart1.AddSeries(TeeChart.ESeriesClass.scLine);
      axTChart1.Series(0).FillSampleValues();

      axTChart1.AddSeries(TeeChart.ESeriesClass.scLine);
      axTChart1.Series(1).FillSampleValues();

      axTChart1.Series(0).ShowInEditor = false;

      axChartEditorPanel1.ChartLink = axTChart1.ChartLink;

Re: Series format "panel".

Posted: Mon Sep 12, 2011 11:56 am
by 9530487
The original question was relating to a series format panel. That's what I'm looking for here.

Can I do it?