Skip to main content
Menu
On this page

Rating

Collect an integer rating and optionally mark a five-step scale as CSAT.

Rendered by the SDK
@usefillo/react
Interactive local preview. Nothing is submitted.

The rating field collects an integer from 1 through its configured maximum.

Options

OptionTypeDefaultBehavior
maxnumber5Sets the highest rating step
insightsMetriccsatnoneLabels a 1-to-5 rating for CSAT analysis

Fillo rejects fractions and values outside the range. insightsMetric: "csat" requires a five-step rating, and it changes how Insights interprets the answer — not the stored integer.

Add a rating field

In the dashboard, select Add block, choose Rating, and choose CSAT only for a standard five-point satisfaction question.

ts
const satisfactionField = {
  id: "satisfaction",
  kind: "rating",
  label: "How satisfied are you?",
  max: 5,
  insightsMetric: "csat",
  required: true,
} as const;

Updated

Was this page helpful?