table.cell_set_text_font_family() - Pine Script Function
table.cell_set_text_font_family()
Section titled “table.cell_set_text_font_family()”Overview
Section titled “Overview”The function sets the font family of the text inside the cell.
Syntax
Section titled “Syntax”table.cell_set_text_font_family(table_id, column, row, text_font_family) → voidParameters
Section titled “Parameters”| Name | Type | Description |
|---|---|---|
| table_id | series table | A table object. |
Examples
Section titled “Examples”Example 1
Section titled “Example 1”//@version=6indicator("Example of setting the table cell font")var t =table.new(position.top_left, rows = 1, columns = 1)table.cell(t, 0, 0, "monospace", text_color = color.blue)table.cell_set_text_font_family(t, 0, 0, font.family_monospace)