Search found 4 matches
- Fri Nov 16, 2012 5:37 pm
- Forum: .NET
- Topic: Basic how to do...
- Replies: 7
- Views: 10323
Re: Basic how to do...
Test.png Using your example, this is what I get. Initially, I do not see the bottom title and the labels are slightly hidden. When I size the window, I get a crash. A couple of things: 1 - I notice you explicitly set the font size for each label, why? Shouldn't it get set based on the Labels.Font.S...
- Fri Nov 16, 2012 2:38 pm
- Forum: .NET
- Topic: Basic how to do...
- Replies: 7
- Views: 10323
Re: Basic how to do...
I figured out my bottom axis issue. When I override the labels, the font size sticks at 8. When I remove the override, the font size changes. Here is how I was setting the labels in my test app: for ( int i = 0; i <= 40; i += 5 ) { tChart1.Axes.Bottom.Labels.Items.Add( i, string.Format( "{0}", ( i *...
- Fri Nov 16, 2012 2:17 pm
- Forum: .NET
- Topic: Basic how to do...
- Replies: 7
- Views: 10323
Re: Basic how to do...
I do not understand why my bottom axis font is not changing, the left is not a problem. Are there any dependencies that would prevent the font from changing? Something else I noticed, is that when I set the font size larger, the axis moves up to allow for the larger font, but the labels are always a...
- Thu Nov 15, 2012 6:41 pm
- Forum: .NET
- Topic: Basic how to do...
- Replies: 7
- Views: 10323
Basic how to do...
I am trying to change the font size for the bottom labels using
tChart1.Axes.Bottom.Labels.Font.Size = 4;
I can change the left labels, but not the bottom.
In xaml, how can the chart be sized and positioned within the container?
How can the axis titles be moved?
Thanks
tChart1.Axes.Bottom.Labels.Font.Size = 4;
I can change the left labels, but not the bottom.
In xaml, how can the chart be sized and positioned within the container?
How can the axis titles be moved?
Thanks