Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 387 - [TW77012916] We actually tried this version after finding out that custom axis dis...
Summary: [TW77012916] We actually tried this version after finding out that custom axi...
Status: CONFIRMED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: WebChart (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-03-18 15:35 EDT by narcís calvet
Modified: 2013-11-20 11:26 EST (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description narcís calvet 2013-11-20 11:26:56 EST
Custom axis disappears as soon as adding the ScrollBar tool.
Please, use a ScrollBarTool to add a scroll bar to the chart (not the legend) in an ASP.net project.
 
I could reproduce this here using this code:
protected void Page_Load(object sender, EventArgs e)
 {
 Steema.TeeChart.Chart ch1 = WebChart1.Chart;
 Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(ch1);

 line1.FillSampleValues();

 Steema.TeeChart.Axis axis1 = new Steema.TeeChart.Axis();
 ch1.Axes.Custom.Add(axis1);
 axis1.AxisPen.Color = System.Drawing.Color.Red;

 line1.CustomVertAxis = axis1;

 ch1.Panel.MarginLeft = 10;
 }

 protected void Button1_Click(object sender, EventArgs e)
 {
 Steema.TeeChart.Tools.ScrollTool sb1 = new Steema.TeeChart.Tools.ScrollTool(WebChart1.Chart);
 } [created:2008-03-18T15:35:54.000+01:00 reported by:narcis@steema.com reported in version:Build 3.2.2980.19081 (TeeChart for .NET)]