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 - exponential labels are drawn when axis range is 0
Summary: exponential labels are drawn when axis range is 0
Status: CONFIRMED
Alias: None
Product: HTML5 JavaScript TeeChart
Classification: Unclassified
Component: Axes (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2017-05-12 04:37 EDT by yeray alonso
Modified: 2017-05-12 04:42 EDT (History)
0 users

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


Attachments
test and screenshots (33.93 KB, application/octet-stream)
2017-05-12 04:42 EDT, yeray alonso
Details

Note You need to log in before you can comment on or make changes to this bug.
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