Hi,
In the Google Chrome, a drawing of trendline failed and a browser was crashed by the following code.
On the other hand, IE9 could draw this trendline, and Firefox could not draw but was survived.
Because this data is a some kind of statistical data, it is difficult to cut or rewrite data.
Is there a way for me to avoid this problem in the Google Chrome?
Code:
var data = [
[45.0996, 10],
[45.0996, 10],
[45.1593, 10],
[45.1607, 10],
[45.1792, 10],
[45.2389, 10],
[45.2589, 10]
];
$('#Chart').jqChart({
title: {text: 'Chart'},
series: [
{
title: 'Trendline',
type: 'trendline',
data: data,
trendlineType: 'linear'
}
]
});