Hi,I'm using TeeChart Javascript/HTML5
code:
Chart1.axes.items[0] = Chart1.axes.left;
Chart1.axes.items[4] = Chart1.axes.add(false,false);
1.When first loading,it will show Only Chart1.axes.items[0].Title.Text
Until MouseMove,it show Chart1.axes.items[4].Title.Text ,Chart1.axes.items[5].Title.Text...etc
Can any solution show all Axes Title in first loading at on time?
2.In Y Axes,Axes.Title comes always in Vertical,I want it be on Horizontal
And any method set Axes.Title.Angle or turn it to Horizontal?
3.Series in null/NaN Value ,How to set it in break line?
Thanks in any help!
Null Value & Axes Title Angle and Show Time In Multiple Axes
Re: Null Value & Axes Title Angle and Show Time In Multiple Axes
Hi, I've ready your reply in Stackoverflow
ans1-will fixed it for the next maintenance release
ans2-Chart1.axes.left.title.rotation = 90;
but question3 still not resolve
Eg:
Although point C & point F is disable
but willl have line start in point B to point D & point E to point G
Any solution to set a break line in point B to point D & point E to point G
Thanks in any help!
ans1-will fixed it for the next maintenance release
ans2-Chart1.axes.left.title.rotation = 90;
but question3 still not resolve
Eg:
Code: Select all
var s0=Chart1.addSeries(new Tee.Bar([5,2,null,6,7,null,4,6,5]));
s0.title="Sugar";
s0.data.labels=['A','B','C','D','E','F','G','H',I'];
but willl have line start in point B to point D & point E to point G
Any solution to set a break line in point B to point D & point E to point G
Thanks in any help!
Re: Null Value & Axes Title Angle and Show Time In Multiple Axes
Hi Eden,
This will also be available with the next maintenance release and will work with 0, 90 and 270 degrees by now.
Let me post it here the complete answer I wrote there.Eden wrote:your reply in Stackoverflow
We've fixed it for the next maintenance release. Thanks for reporting it.Eden wrote:1.When first loading,it will show Only Chart1.axes.items[0].Title.Text
Until MouseMove,it show Chart1.axes.items[4].Title.Text ,Chart1.axes.items[5].Title.Text...etc
Can any solution show all Axes Title in first loading at on time?
We've implemented a new rotation property for the all the axes titles.Eden wrote:2.In Y Axes,Axes.Title comes always in Vertical,I want it be on Horizontal
And any method set Axes.Title.Angle or turn it to Horizontal?
Code: Select all
Chart1.axes.left.title.rotation = 90;
Eden wrote:3.Series in null/NaN Value ,How to set it in break line?
Regarding this 3rd question, you would like to have a break in your axis like the AxisBreaks Tool, or you just don't want the C and F Axis labels to be drawn, showing a blank space where the respective values would be if visible?Eden wrote:Eg:Although point C & point F is disableCode: Select all
var s0=Chart1.addSeries(new Tee.Bar([5,2,null,6,7,null,4,6,5])); s0.title="Sugar"; s0.data.labels=['A','B','C','D','E','F','G','H',I'];
but willl have line start in point B to point D & point E to point G
Any solution to set a break line in point B to point D & point E to point G
Thanks in any help!
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Null Value & Axes Title Angle and Show Time In Multiple Axes
Hi,Yeray
In 3rd question,Is any solution to set the line between point B and point D & the line between point F and point H are disable/invisible?
How to set a break line in point B to point D & point F to point H like this
In 3rd question,Is any solution to set the line between point B and point D & the line between point F and point H are disable/invisible?
Code: Select all
var Chart1;
function draw() {
Chart1 = new Tee.Chart("canvas1");
Chart1.axes.left.title.text = "Data";
var series = new Tee.Line(Chart1);
Chart1.addSeries(series);
series.data.values = [5, 2, null , 6, 7, 1,null , 6, 5];
series.data.labels = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'];
Chart1.draw();
}
Re: Null Value & Axes Title Angle and Show Time In Multiple Axes
Hi,
We've added a new treatNulls property to the Line series so with the next maintenance release you'll be able to do this:
We've added a new treatNulls property to the Line series so with the next maintenance release you'll be able to do this:
Code: Select all
Chart1.series.items[0].treatNulls = "skip"; // default is: "dontPaint"
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Null Value & Axes Title Angle and Show Time In Multiple Axes
Hi,your product is awesome!
When does it maintenance release?
Best Requard!
When does it maintenance release?
Best Requard!
Re: Null Value & Axes Title Angle and Show Time In Multiple Axes
Hi Eden,
I'm afraid I can't tell you a date for the next release to be published.
I'm afraid I can't tell you a date for the next release to be published.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |