Search found 19 matches

by Torte
Wed Aug 02, 2006 11:44 am
Forum: .NET
Topic: Spin Gridband 90° ?
Replies: 1
Views: 4572

Spin Gridband 90° ?

Hello, i want to hardcode implement the alignment change of the gridband like the option in the build-in editor but i just cant find any way to set the correct properties. i want from this : http://i69.photobucket.com/albums/i72/Alina2300/work/gridbandnormal.jpg NOT via : http://i69.photobucket.com/...
by Torte
Thu Jul 27, 2006 10:58 am
Forum: .NET
Topic: Massive Gridband Problems when resizing window
Replies: 1
Views: 4042

Massive Gridband Problems when resizing window

Hi, i got a chart window like this : [img] http://i69.photobucket.com/albums/i72/Alina2300/axesgone.jpg [/img] When i noticed the gridband covering the X axis perfectly, which is, in this case at least, not really wanted, i chose the only option i know/have found to prevent this - to set the axis no...
by Torte
Wed Jul 26, 2006 8:42 am
Forum: .NET
Topic: font problems
Replies: 7
Views: 12080

hi narcis,

thx for reply, allready done like this and its working but too bad there isnt a more convenient way for this :?

regards,
rob
by Torte
Tue Jul 25, 2006 7:59 am
Forum: .NET
Topic: font problems
Replies: 7
Views: 12080

hi pep,

thx for help, thats working :)
but what about :

Code: Select all

private Steema.TeeChart.Chart _myChart;
this._myChart.Axes.Bottom.Title.Font = this._myChart.Axes.Left.Title.Font;               
            // or ~.DrawingFont;
what to do about the write-protection of the font property ?
regards,
rob
by Torte
Thu Mar 16, 2006 2:09 pm
Forum: .NET
Topic: additional axis
Replies: 1
Views: 4081

additional axis

hi there, I am working on a runtime-option for enabling the right and top axis in addition to the normal enabled left and bottom. They cannot set to just beeing visible unless the option in the TeeChart Editor( Series -> General ->) to set the horizontal and vertical axis to both, bottom and top - a...
by Torte
Thu Mar 16, 2006 1:11 pm
Forum: .NET
Topic: gridband problems
Replies: 5
Views: 8211

hi narcis, looks like it was a matter of tranparency. Since the gridband is painted above the grid its not visible when gridband.bands transparency is set to zero. The unlogic in this is just that it starts !=0 and when the user sets a bandcolor the transparency is set to 0 which ends in hiding the ...
by Torte
Fri Mar 10, 2006 1:28 pm
Forum: .NET
Topic: gridband problems
Replies: 5
Views: 8211

hi narcis, im just activating the gridband with this.chart.GetGridBand.Active=true; then asigning colors like this.chart.GetGridBand.Band1.Color=this.colorDialog5.Color; this.chart.GetGridBand.Band2.Color=this.colorDialog6.Color; and then the grid is gone. I am using Teechart .NET V2. regards, Robert
by Torte
Fri Mar 10, 2006 11:53 am
Forum: .NET
Topic: gridband problems
Replies: 5
Views: 8211

gridband problems

hi there,

i got a problem with the recoloring the gridband when the grid is activ. When user changes color of the gridband at runtime, the grid is overpainted and not seen anymore...how to avoid this?
bg,
Robert
by Torte
Tue Mar 07, 2006 4:50 pm
Forum: .NET
Topic: setting increments
Replies: 6
Views: 9349

working, thank you:)
even tho i think its strange that setting the increment to zero does what normally the automatic=true should do...with increment=0 zooming is working even without setting auto to true again
thanks again,
rob
by Torte
Tue Mar 07, 2006 4:09 pm
Forum: .NET
Topic: setting increments
Replies: 6
Views: 9349

hi again,

i know this one but it just wont work:(
especially when zooming the labels wont readjust like they normally do in auto mode!
there must be more set to false then just tChart1.Axes.Bottom.Automatic when setting the increment hard by hand
rob
by Torte
Tue Mar 07, 2006 2:53 pm
Forum: .NET
Topic: setting increments
Replies: 6
Views: 9349

hi narcis,
thank you, ill try this, but how do i get back to auto mode once i set the increment?
rob
by Torte
Tue Mar 07, 2006 1:45 pm
Forum: .NET
Topic: setting increments
Replies: 6
Views: 9349

setting increments

hi there, besides the option to automatically asign the labels on an axis i need two options where one can enter either the wanted gap between labels or the number of labels he wants to see. e.g. ymin=0,ymax=2000, option 1=>gap=500(entered) =>5 labels(0,500,1000,1500,2000) option 2=>labelcount=3(ent...
by Torte
Mon Feb 20, 2006 4:16 pm
Forum: .NET
Topic: Formatting Numeric Axis Labels
Replies: 4
Views: 7530

Hi again,

here is another one! How to fix scientific view to E+3 for ALL labels even those who would normally get an E+2 etc e.g.
1000 => 1x10^3
100 => 0.1x10^3 and not 1x10^2 ?

Thanks again,
Robert
by Torte
Mon Feb 20, 2006 3:07 pm
Forum: .NET
Topic: Formatting Numeric Axis Labels
Replies: 4
Views: 7530

Oops thank you! I didnt catch up this one :oops:
Workin now, thanks again:)
Robert
by Torte
Mon Feb 20, 2006 1:36 pm
Forum: .NET
Topic: Formatting Numeric Axis Labels
Replies: 4
Views: 7530

Formatting Numeric Axis Labels

Hi there, Is there any way to show values on ticks in a chart in scientific format? I need this option for both axis but could not figure it out using the options given. Would be great if one could make this depending on the value as well, e.g. for values larger than xxx. Console.Write("{0:E}", 6200...