I´m working with charts from tables like :
Code: Select all
Chart1.fromTable('2',Tee.Line,'True',0,0);
Using dates as label values, the are long, so I would like to rotate them 90 degr. Can´t work this out.
Have tried with different codes like:
Code: Select all
Chart2.axes.bottom.labelvalues.rotation = (90:0) ;
Also have some truble with the tip tool.
Code: Select all
tip.ongettext = function(tool, text, series, index) {
var s = 'Series point: ' + index.toFixed(0) + '\nValue: ' + series.data.values[index].toFixed(2);
return s;
}
Best would be to show a Timestamp, that is a second labelvalue incerted in the table, within the tip frame. Can I work with dubble x-values like this ? If so; how ?
My grateful regards
TG