[]
Returns the values of the points.
The returned array contains the numeric values represented by the points in the cascade sparkline.
double[] Points { get; }
ReadOnly Property Points As Double()
worksheet.Range["A2:B4"].Value = new object[,] {
{"Salary", 3500},
{"Bonus", 1200},
{"Expense", -800}
};
worksheet.Range["C2"].Formula = "=CASCADESPARKLINE(B2:B4,1,A2:A4,,,\"#8CBF64\",\"#D6604D\",FALSE)";
ICascadeSparkLine sparkLine = (ICascadeSparkLine) worksheet.Range["C2"].Value;
double[] points = sparkLine.Points;