Search found 12 matches
- Tue Aug 16, 2005 8:02 am
- Forum: .NET
- Topic: Unable to set font size and other attributes on RADAR Axes
- Replies: 6
- Views: 10633
Hi Mike, Please, try this: Dim rd As New Steema.TeeChart.Styles.Radar(TChart1.Chart) rd.Add(100, "Label1") rd.Add(200, "Label2") rd.Add(300, "Label3") rd.Add(400, "Label4") rd.CircleLabels = True rd.CircleLabelsInside = True rd.CircleLabelsRotated = True rd.CircleLabelsFont.Size = 12 rd.CircleLabels...
- Fri Aug 12, 2005 9:33 am
- Forum: .NET
- Topic: Unable to set font size and other attributes on RADAR Axes
- Replies: 6
- Views: 10633
Hi Mike, You can do it in the following way: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim rd As New Steema.TeeChart.Styles.Radar(TChart1.Chart) rd.FillSampleValues() TChart1.Axes.Right.Title.Text = "Right" TChart1.Axes.Right.Title.Font.Co...
- Fri Aug 12, 2005 9:02 am
- Forum: .NET
- Topic: Print changed with maintenance release
- Replies: 5
- Views: 10031
Hi Avatar, I can see now what you say. It is a problem of refreshing the preview window the first time you come in. Once you enter, if you change the margins manually through the window controls all works ok. Thanks for the notification and sorry for the inconvenience. I'll add this issue to our bug...
- Thu Aug 11, 2005 3:00 pm
- Forum: .NET
- Topic: Unacceptable Performance for Data Export (.ten, Excel, etc.)
- Replies: 14
- Views: 21414
- Thu Aug 11, 2005 9:56 am
- Forum: .NET
- Topic: Visual Studio versions
- Replies: 3
- Views: 7404
- Thu Aug 11, 2005 9:12 am
- Forum: .NET
- Topic: Print changed with maintenance release
- Replies: 5
- Views: 10031
Hi Avatar, You could customize the default margins to your needs in the following way: tChart1.Chart.Printer.MarginUnits = Steema.TeeChart.PrintMarginUnits.Percent; tChart1.Chart.Printer.Margins.Left = 10; tChart1.Chart.Printer.Margins.Top = 10; tChart1.Chart.Printer.Margins.Right = 10; tChart1.Char...
- Thu Aug 11, 2005 8:34 am
- Forum: .NET
- Topic: Dynamic chart jiggles up and down a little
- Replies: 2
- Views: 6389
Hi Terry,
Have you set the Min/Max values of the left axis with a spread wide enough so that all y values are inside?
If this does not resolve your problem, please send an example of your code.
Have you set the Min/Max values of the left axis with a spread wide enough so that all y values are inside?
Code: Select all
tChart1.Axes.Left.SetMinMax(min,max);
- Wed Aug 10, 2005 8:50 am
- Forum: .NET
- Topic: Unacceptable Performance for Data Export (.ten, Excel, etc.)
- Replies: 14
- Views: 21414
- Tue Aug 09, 2005 3:12 pm
- Forum: .NET
- Topic: Timestep greater than a Year
- Replies: 6
- Views: 11091
Hi Avatar, Another option to resolve your problem could be using custom labels. You can modify the original code in the following way: private Steema.TeeChart.Styles.Line line1; private void InitializeChart() { line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart); tChart1.Axes.Bottom.Labels.Angle ...
- Thu Aug 04, 2005 10:12 am
- Forum: .NET
- Topic: Area Series whacky display
- Replies: 4
- Views: 9422
Hi Randy, Have you tried fixing the origin for each areaSeries? I mean in this way: private void PopulateAreaChart(SpatialData sd) { tchtArea.Series.RemoveAllSeries(); tchtArea.Series.Clear(); Steema.TeeChart.Styles.Area areaSeries; tchtArea.Axes.Left.Title.Text = cmbTrait.Text; foreach(MapUnitGeome...
- Thu Aug 04, 2005 8:51 am
- Forum: .NET
- Topic: Markers on Chart
- Replies: 4
- Views: 10274
Hi Terry, If I understand you correctly, what you need is adding a custom text at some location inside the chart... This can be done through the Annotation tool and you can see some examples in the features demo of TeeChart (see All features / Tools / Annotation). If you need further help, please do...
- Thu Aug 04, 2005 7:52 am
- Forum: .NET
- Topic: Missing Tick Marks on Bottom Axis
- Replies: 2
- Views: 6929
Hi TeeNee, You're right, the default behaviour for the bottom axis should be the same as for the left axis. I'll add this issue to our bug list to be fixed for future releases. In the meantime you can set the interval between the grid lines by using the Increment property from the Bottom Axis, e.g.:...