![]() | Steema Issues DatabaseNote: 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. |
| Summary: | Assigning an array of strings to data.values give some errors | ||
|---|---|---|---|
| Product: | HTML5 JavaScript TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | CONFIRMED --- | ||
| Severity: | enhancement | CC: | licensing |
| Priority: | Lowest | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| URL: | http://www.teechart.net/support/viewtopic.php?f=18&t=15062 | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
Hello, We have bought 5 developer steema TeeChart JavaScript Developer commercial license and as per the instruction given in email, we have downloaded using the license & customer no and its password, setup got downloaded but after completion we are trying to install by accepting the agreement it prompts an error stating that installation folder of HTML5 Builder cannot found. can you please revert us on the same & guide us further with download & installation part. Thanks in advance. Hello licensing@ftindia.com, Please, for setup problems email info@steema.com. |
If you assign an array of strings to the data.values you get an error at: Tee.Series.prototype.valueText=function(index) When calling: d.toFixed(0) Because it expects a double but "d" is a string. Adding this at the beginning of the valueText method fixes it: if ( typeof d == "string") d=+d; But then it crashes the function: this.drawText=function(bounds,text) When calling: text.split("\n") Because it expects a string and now text is a number.