I do not call anything expect adding 'SeriesBandTool' to chart.
I hope, I can succeed in reproducing this exception in spike solution.
Search found 36 matches
- Tue Mar 15, 2016 12:19 pm
- Forum: .NET
- Topic: Chart.Bitmap threw an exception.
- Replies: 9
- Views: 16540
- Tue Mar 15, 2016 11:10 am
- Forum: .NET
- Topic: Chart.Bitmap threw an exception.
- Replies: 9
- Views: 16540
Re: Chart.Bitmap threw an exception.
" at Steema.TeeChart.Tools.SeriesBandTool.DrawBandTool()\r\n at Steema.TeeChart.Tools.SeriesBandTool.BeforeDrawValues(Object sender, Graphics3D g)\r\n at Steema.TeeChart.PaintChartEventHandler.Invoke(Object sender, Graphics3D g)\r\n at Steema.TeeChart.Styles.Series.DoBeforeDrawValues()\r\n at Steema...
- Mon Mar 14, 2016 2:11 pm
- Forum: .NET
- Topic: Chart.Bitmap threw an exception.
- Replies: 9
- Views: 16540
Re: Chart.Bitmap threw an exception.
I am stilling try to reproduce this exception outside of my project but still no success.
- Fri Mar 11, 2016 5:29 pm
- Forum: .NET
- Topic: Chart.Bitmap threw an exception.
- Replies: 9
- Views: 16540
Re: Chart.Bitmap threw an exception.
Screen-shot of the exception.
- Fri Mar 11, 2016 5:23 pm
- Forum: .NET
- Topic: Chart.Bitmap threw an exception.
- Replies: 9
- Views: 16540
Re: Chart.Bitmap threw an exception.
StackTrace " at Steema.TeeChart.Tools.SeriesBandTool.DrawBandTool()\r\n at Steema.TeeChart.Tools.SeriesBandTool.BeforeDrawValues(Object sender, Graphics3D g)\r\n at Steema.TeeChart.PaintChartEventHandler.Invoke(Object sender, Graphics3D g)\r\n at Steema.TeeChart.Styles.Series.DoBeforeDrawValues()\r\...
- Fri Mar 11, 2016 4:05 pm
- Forum: .NET
- Topic: Chart.Bitmap threw an exception.
- Replies: 9
- Views: 16540
Re: Chart.Bitmap threw an exception.
Hello, I am trying to reproduce the problem with spike solution but I did not find much time to do that but, the problem is when I try to add a line series to var seriesBandTool = new SeriesBandTool(); seriesBandTool.Series = //line series Chart.Tools.Add(seriesBandTool); and change the //line serie...
- Thu Mar 03, 2016 11:39 am
- Forum: .NET
- Topic: Chart.Bitmap threw an exception.
- Replies: 9
- Views: 16540
Chart.Bitmap threw an exception.
I try to draw when ever there is change in the value of the textbox in C# application. E.g., diameter=8.323232 If I change the above value slowly like 8.32323, 8.3232 and so on by pressing backspace I have no problems the charts renders the change in the value. But if I change the values very fast b...
- Mon Feb 15, 2016 1:40 pm
- Forum: .NET
- Topic: Cant' set the zoom to the chart
- Replies: 1
- Views: 5123
Cant' set the zoom to the chart
var m_Chart = new TChart(); m_Chart.Aspect.View3D = false; m_Chart.Legend.Visible = false; m_Chart.Chart.Name = "TestChart"; m_Chart.Chart.Dock = DockStyle.Fill; m_Chart.Chart.Header.Text = ""; m_Chart.Chart.Aspect.SmoothingMode = SmoothingMode.AntiAlias; m_Chart.Chart.Series.Clear(); m_Chart.Chart....
- Thu Mar 05, 2015 3:32 pm
- Forum: .NET
- Topic: Magnitude and Phase plots
- Replies: 3
- Views: 7128
Re: Magnitude and Phase plots
Thank you very much indeed.
I'm working with custom axis for bottom, right and left and they work really well except with the margins and axis title.
Attached the screen-shot of the same. May I Know how to give nice margins and axis title with custom axis?
I'm working with custom axis for bottom, right and left and they work really well except with the margins and axis title.
Attached the screen-shot of the same. May I Know how to give nice margins and axis title with custom axis?
- Wed Mar 04, 2015 1:12 pm
- Forum: .NET
- Topic: Magnitude and Phase plots
- Replies: 3
- Views: 7128
Magnitude and Phase plots
I would like acheive what is shown in the below link. http://www.teechart.net/support/viewtopic.php?f=3&t=10647#p44663 Right now, I have two fastlines. One for magnitude and an another for phase, plotted on a chart but I don't know how to give axes for magnitude and phase separately. Any help is app...
- Tue Jun 10, 2014 4:21 pm
- Forum: .NET
- Topic: How to fit all the lines into a chart
- Replies: 35
- Views: 48465
Re: How to fit all the lines into a chart
Thanks. I will dig deeper using ILSpy to understand the dependencies. In the mean-time if you have any updates on this issue please let me know.
Regards,
Regards,
- Tue Jun 10, 2014 3:39 pm
- Forum: .NET
- Topic: How to fit all the lines into a chart
- Replies: 35
- Views: 48465
Re: How to fit all the lines into a chart
1) and 2). That is totally right. I have no doubt in that.
May I ask, how to perform an automatic zoom that fits all polygon in a given Chart rectangle?
May I ask, how to perform an automatic zoom that fits all polygon in a given Chart rectangle?
- Tue Jun 10, 2014 2:59 pm
- Forum: .NET
- Topic: How to fit all the lines into a chart
- Replies: 35
- Views: 48465
Re: How to fit all the lines into a chart
On calculating appropriate ratios in maintaining the aspect-ratio, I believe it should also take the Chart bounds into consideration so it may be possible to put all the drawings inside the chart. * Just a vague idea. I do not know whether the above is valid at all. If valid, I treat this as a featu...
- Tue Jun 10, 2014 2:29 pm
- Forum: .NET
- Topic: How to fit all the lines into a chart
- Replies: 35
- Views: 48465
Re: How to fit all the lines into a chart
Slowly taking that code into my veins but I see it does not take Chart bounds into account.
I am not an expert in 2D-graphics but I assume that this feature is not available for consumption yet.
I am not an expert in 2D-graphics but I assume that this feature is not available for consumption yet.
- Tue Jun 10, 2014 11:31 am
- Forum: .NET
- Topic: How to fit all the lines into a chart
- Replies: 35
- Views: 48465
Re: How to fit all the lines into a chart
Indeed, I get polygon into the chart when I comment those lines. Also, happy with what IsoHorizAxes or IsoVertAxes does on polygon. Everything is fine till now. ============================ Problem I have is that I do not want to surprise customers when they design something that is not shown entire...