[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICascadeSparkLine.Minimum

Minimum Property

Minimum

Gets the minimum value of the display area.

This value defines the lower bound used to display the cascade sparkline. The default value is null.

Declaration
double? Minimum { get; }
ReadOnly Property Minimum As Double?
Examples
worksheet.Range["A2:B4"].Value = new object[,] {
    {"Salary", 3500},
    {"Bonus", 1200},
    {"Expense", -800}
};
worksheet.Range["C2"].Formula = "=CASCADESPARKLINE(B2:B4,1,A2:A4,-1000,,\"#8CBF64\",\"#D6604D\",FALSE)";
ICascadeSparkLine sparkLine = (ICascadeSparkLine) worksheet.Range["C2"].Value;
double? minimum = sparkLine.Minimum;