Thanks, another question...is it possible to display only the label string in the legend, instead of value and label string?
Points1.Chart.Legend.LegendStyle = Steema.TeeChart.LegendStyles.Values
Displays both value and label string.
Search found 61 matches
- Wed Jan 12, 2011 9:18 am
- Forum: .NET
- Topic: Custom Legend for Stacked Bar Chart
- Replies: 3
- Views: 5892
- Wed Jan 12, 2011 3:13 am
- Forum: .NET
- Topic: Custom Legend for Stacked Bar Chart
- Replies: 3
- Views: 5892
Custom Legend for Stacked Bar Chart
Hi,
I have a stacked bar chart with 3 series. The default Legend set to:
Bar1.Chart.Legend.LegendStyle = Steema.TeeChart.LegendStyles.Values
only displays the values for for the first series.
How do I display values for all 3 series?
I have a stacked bar chart with 3 series. The default Legend set to:
Bar1.Chart.Legend.LegendStyle = Steema.TeeChart.LegendStyles.Values
only displays the values for for the first series.
How do I display values for all 3 series?
- Sun Dec 05, 2010 9:00 pm
- Forum: .NET
- Topic: Distribution on 32 and 64 bit systems
- Replies: 5
- Views: 7829
Distribution on 32 and 64 bit systems
Hi,
When distributing my net framework application on 32 and 64 bit systems do i need to distribute seperate 32 and 64 bit teechart.dll's' ?
When distributing my net framework application on 32 and 64 bit systems do i need to distribute seperate 32 and 64 bit teechart.dll's' ?
- Fri Dec 03, 2010 8:43 pm
- Forum: .NET
- Topic: Change Title on Export Dialog
- Replies: 3
- Views: 5856
Re: Change Title on Export Dialog
Thank you Sandra,
This code worked for me:
Dim expEditor1 = New Steema.TeeChart.Editors.Export.ExportEditor(TChart1.Chart)
expEditor1.Text = "Export Chart"
expEditor1.Show()
This code worked for me:
Dim expEditor1 = New Steema.TeeChart.Editors.Export.ExportEditor(TChart1.Chart)
expEditor1.Text = "Export Chart"
expEditor1.Show()
- Fri Dec 03, 2010 3:25 am
- Forum: .NET
- Topic: Change Title on Export Dialog
- Replies: 3
- Views: 5856
Change Title on Export Dialog
Hi,
Is it possible to change the default title on the export dialog?
Is it possible to change the default title on the export dialog?
- Fri Nov 26, 2010 5:51 am
- Forum: .NET
- Topic: Setting manual scale of ternary plot
- Replies: 3
- Views: 6237
Re: Setting manual scale of ternary plot
Hi Sandra,
I have gone back to my old code and drawn my own ternary charts on the TChart canvas.
I have gone back to my old code and drawn my own ternary charts on the TChart canvas.
- Mon Nov 15, 2010 8:22 pm
- Forum: .NET
- Topic: Adjusting start position of axis
- Replies: 3
- Views: 6570
Re: Adjusting start position of axis
This works OK, but a new problem is introduced. The labels on the top axis are not positioned correctly. See picture.
- Sun Nov 14, 2010 9:47 am
- Forum: .NET
- Topic: Setting manual scale of ternary plot
- Replies: 3
- Views: 6237
Setting manual scale of ternary plot
If I set the the axes scale of the ternary plot manually, the minimum and maximum values should start at the the beginning and end of the axis, as with the points plot. However, the minimum value starts at the left edge (or bottom) of the plot and the maxium value coincides with the right edge (or t...
- Sun Nov 14, 2010 9:42 am
- Forum: .NET
- Topic: Adjusting start position of axis
- Replies: 3
- Views: 6570
Adjusting start position of axis
I need to adjust the aspect ratio of the points chart. If I set the Left and right axis start position to 25% Points1.Chart.Axes.Left.StartPosition = 25 Points1.Chart.Axes.Right.StartEndPositionUnits = Steema.TeeChart.PositionUnits.Percent Points1.Chart.Axes.Right.StartPosition = 25 The Left and Rig...
- Sun Nov 14, 2010 5:35 am
- Forum: .NET
- Topic: display pointer at front
- Replies: 1
- Views: 3971
display pointer at front
I need to display the currently selected pointer on a chart at the front. Currently, if I select and highlight a pointer, it is displayed in the position plotted, making it obscured by overlying pointers.
- Thu Nov 11, 2010 2:44 pm
- Forum: .NET
- Topic: Log Axis Labels
- Replies: 5
- Views: 9168
Re: Log Axis Labels
Hi,
The real cause of the problem is not having this property set:
Points1.Chart.Axes.Bottom.Increment = 0
Points1.Chart.Axes.Left.Increment = 0
Points1.Chart.Axes.Right.Increment = 0
Points1.Chart.Axes.Top.Increment = 0
lilo
The real cause of the problem is not having this property set:
Points1.Chart.Axes.Bottom.Increment = 0
Points1.Chart.Axes.Left.Increment = 0
Points1.Chart.Axes.Right.Increment = 0
Points1.Chart.Axes.Top.Increment = 0
lilo
- Thu Nov 11, 2010 1:00 pm
- Forum: .NET
- Topic: Log Axis Labels
- Replies: 5
- Views: 9168
Re: Log Axis Labels
Hi Sandra
OK, Sorry about that...
When I copied a form with a tchart on it, it generated a few errors.
I deleted the TChart and reloaded it into my existing project and it works fine.
lilo
OK, Sorry about that...
When I copied a form with a tchart on it, it generated a few errors.
I deleted the TChart and reloaded it into my existing project and it works fine.
lilo
- Thu Nov 11, 2010 9:07 am
- Forum: .NET
- Topic: Log Axis Labels
- Replies: 5
- Views: 9168
Re: Log Axis Labels
If I plot a points chart with log scale in a new project, it works fine. I cannot get it to work in my existing project. If I use Points1.Chart.Axes.Bottom.AutomaticMaximum = True Points1.Chart.Axes.Left.AutomaticMaximum = True Points1.Chart.Axes.Bottom.AutomaticMinimum = True Points1.Chart.Axes.Lef...
- Thu Nov 11, 2010 9:01 am
- Forum: .NET
- Topic: Points Chart Clicked Pointer
- Replies: 5
- Views: 8242
Re: Points Chart Clicked Pointer
Yes, it works fine. Adding a line in Points1_Click made it work.
- Thu Nov 11, 2010 2:51 am
- Forum: .NET
- Topic: Log Axis Labels
- Replies: 5
- Views: 9168
Log Axis Labels
Hi, I need log plots for my app. I am having trouble displaying the following lagarithmic scale: MinYTLog = 1 MaxYTLog = 1000 MinXTLog = 1 MaxXTLog = 1000 Points1.Chart.Axes.Bottom.Logarithmic = True Points1.Chart.Axes.Right.Logarithmic = True Points1.Chart.Axes.Left.Logarithmic = True Points1.Chart...