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 1861

Summary: exponential labels are drawn when axis range is 0
Product: HTML5 JavaScript TeeChart Reporter: yeray alonso <yeray>
Component: AxesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=18&t=16581
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: test and screenshots

Description yeray alonso 2017-05-12 04:37:06 EDT
Here a simple example:

        function draw() {
            Chart1 = new Tee.Chart("canvas1");

            var series = Chart1.addSeries(new Tee.Line());
            series.data.values=[0,0];

            Chart1.draw();
        }

Similar results when using a different value. Ie:

            series.data.values=[10,10];
Comment 1 yeray alonso 2017-05-12 04:42:56 EDT
Created attachment 761 [details]
test and screenshots