Hi.
Is there any kind of data interpolation in the chart component?
As I see it for every chart-line (series) there has to be a value for every singe timestep (or x-value)
So
var data = [{
"companyA": "-1.9",
"companyB": 1,
date: "2000"
}, {
"companyA": "-0.8",
date: "2001"
}, {
"companyA": "3.4",
"companyB": 1.9,
date: "2002"
}
];
would break.
Is that correct? Or is there some way to be tolerant to missing data? Idealy some kind of interpolation!?
In the docs I could not find confirmation for either hypothesis.