Chart Settings Tips

Introduces configuration options for charts

Image Display

You can display images within table charts using the detailed settings.

By selecting the target column from "Column Settings" and enabling "Image URL Preview", image URLs will be displayed as images within the table chart. When "Enable Link URL" is activated, they will be displayed as links that open the URL in a new tab.

Value Format

In the detailed settings of table charts, you can specify value formats for numeric and date type data.

For numeric types, you can configure them according to d3-format specifications, and for date types, according to Day.js specifications.

While the value format selection form suggests several patterns according to data type, you can also configure patterns other than those suggested through direct input.

Example)

  • Numeric type (12345.6789)

    • .0f | 12346

    • ,.1r | 10,000

  • Date type (2025/1/1 00:00:00)

    • YYYY-MM-DD HH:mm:ss ddd | 2025-01-01 00:00:00 Wed

    • YY/M/D | 25/1/1

X-Axis Upper Limit Specification for XY Charts

The X-axis in bar charts is internally implemented as a categorical axis. This means that even if the X-axis values are numeric, they are not treated as actual "values" but rather as the index of the data order (0th, 1st, 2nd...).

Example) In the case of index X-axis

Index
X-axis Value

0th

1

1st

10

2nd

20

3rd

30

...

...

10th

100

In this case, if you set the axis upper limit to "10", data up to the 10th index will be displayed, which means X-axis values up to 100 will be shown.

Last updated

Was this helpful?