Skip to main content
Version: Streamsheets 2.5

CELLCHART

Draw a chart inside a cell.

Syntax

=CELLCHART(DataRange, [ChartType], [LineColor], [FillColor], [Minimum], [Maximum])

Arguments

NameTypeDescription
DataRangeRangeCell Range to retrieve the data for the chart from
ChartType (optional)StringValid Chart Type. Default is line. Valid values are : line, column, bar, pie, doughnut, bubble, scatter, area.
LineColor (optional)StringLine Color to use for first series as hexadecimal color value
FillColor (optional)StringFill Color to use for first series as hexadecimal color value
Minimum (optional)NumberValue Axis Minimum
Maximum (optional)NumberValue Axis Maximum

Return

TRUE or an Error Code

Examples

FormulaResultComment
=CELLCHART(B2:B5,"line")
TRUEDraw a chart in the current cell.