Search found 8 matches

by Pete
Wed Mar 20, 2013 1:54 pm
Forum: .NET
Topic: PolarBar bottom axis labels are misaligned.
Replies: 5
Views: 6753

Re: PolarBar bottom axis labels are misaligned.

i'm not sure if it makes a difference, but the series we're adding to the chart is a PolarBar, not a plain "Polar" series. below is the code ... Steema.TeeChart.Styles.PolarBar PolarSeries = new Steema.TeeChart.Styles.PolarBar(); PolarSeries.Circled = true; PolarSeries.Pen.Visible = false; PolarSeri...
by Pete
Tue Mar 19, 2013 5:07 pm
Forum: .NET
Topic: PolarBar bottom axis labels are misaligned.
Replies: 5
Views: 6753

Re: PolarBar bottom axis labels are misaligned.

Hi Sandra, I'm glad to see that it doesn't happen in the version you are using. unfortunately, this chart is embedded in a number of custom controls that we have as part of our solution, and, to change them out might be a bit of a challenge, as i didn't write any of the controls. i would imagine tha...
by Pete
Tue Mar 19, 2013 3:14 pm
Forum: .NET
Topic: PolarBar bottom axis labels are misaligned.
Replies: 5
Views: 6753

Re: PolarBar bottom axis labels are misaligned.

after a bunch of experimentation, it turns out that i only need to set the Min/Max of the Left and Bottom. Left uses Min/Max Y and Bottom uses Min/Max X.
by Pete
Tue Mar 19, 2013 2:27 pm
Forum: .NET
Topic: PolarBar bottom axis labels are misaligned.
Replies: 5
Views: 6753

PolarBar bottom axis labels are misaligned.

I have a PolarBar chart and it appears that the labels on the bottom axis aren't aligned with the corresponding "ring". in the attached picture, if you look at the 0.65 ring, it lines up with the left, top, and right labels, but not with the bottom. we are using TChart version 4.1.2011.4193. is this...
by Pete
Tue Mar 19, 2013 1:55 pm
Forum: .NET
Topic: setting minimum value of PolarBar chart
Replies: 3
Views: 4846

Re: setting minimum value of PolarBar chart

thanks, Sandra and Narcis,

the picture is very similar to what i was seeing. so, most likely the center of my chart is also 0.

pete.
by Pete
Fri Feb 15, 2013 6:53 pm
Forum: .NET
Topic: setting minimum value of PolarBar chart
Replies: 3
Views: 4846

setting minimum value of PolarBar chart

i would like to have the center value of a Polar chart to be 0. the chart type is PolarBar. if i set the following properties of the Polar chart, the axes start at 0, but not at the center, meaning that the first "ring" is 0. i would like the center/intersection of the axes lines to be 0. TChart1.Ax...
by Pete
Tue Feb 12, 2013 6:48 pm
Forum: .NET
Topic: TeeChart style determination
Replies: 2
Views: 3957

Re: TeeChart style determination

after a lot of interactive "immediate window" queries, i think i may have answered my own question.

if (tTempChart[0].GetType().Name=="PolarBar")
{
// this is a polar chart
}
else
{
// this is a cartesian chart ... GetType().Name equals "Points"
}
by Pete
Tue Feb 12, 2013 4:11 pm
Forum: .NET
Topic: TeeChart style determination
Replies: 2
Views: 3957

TeeChart style determination

i have 2 charts on a panel. one is a regular cartesian chart (typical X/Y axes), the other is a polar chart. i'm writing a common function to reset the charts by using the double-click event handler. one of the parameters on the event handler is sender. if i cast this like this ... Steema.TeeChart.T...