Line Chart
Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y=sales_usd0k 
    yAxisTitle="Sales per Month"
/>Examples
Line
Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y=sales_usd0k 
    yAxisTitle="Sales per Month"
    title="Monthly Sales"
    subtitle="Includes all categories"
/>Multi-Series Line
Loading... 
   <LineChart 
    data={orders_by_category}
    x=month
    y=sales_usd0k 
    yAxisTitle="Sales per Month"
    series=category
/>Multi-Series Line with Steps
Loading... 
   <LineChart 
    data={orders_by_category}
    x=month
    y=sales_usd0k 
    yAxisTitle="Sales per Month"
    series=category
    step=true
/>Multiple y Columns
Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y={['sales_usd0k','orders']} 
    yAxisTitle="Sales per Month"
/>Secondary y Axis
Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y=sales_usd0k
    y2=orders
    yAxisTitle="Sales per Month"
/>Secondary Axis with Bar
Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y=sales_usd0k
    y2=orders
    y2SeriesType=bar
    yAxisTitle="Sales per Month"
/>Value Labels
Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y=sales_usd0k 
    yAxisTitle="Sales per Month"
    labels=true
/>Custom Color Palette
Loading... 
   <LineChart 
    data={orders_by_category}
    x=month
    y=sales_usd0k 
    yAxisTitle="Sales per Month"
    series=category
    colorPalette={
        [
        '#cf0d06',
        '#eb5752',
        '#e88a87',
        '#fcdad9',
        ]
    }
/>Markers
Default
Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y=sales_usd0k
    markers=true 
/>markerShape=emptyCircle
     Loading... 
   <LineChart 
    data={orders_by_month}
    x=month
    y=sales_usd0k 
    markers=true
    markerShape=emptyCircle
/>Options
Data
data
 RequiredQuery name, wrapped in curly braces
 - Options:
 - query name
 
x
 RequiredColumn to use for the x-axis of the chart
 - Options:
 - column name
 
y
 RequiredColumn(s) to use for the y-axis of the chart
 - Options:
 - column name | array of column names
 
y2
 Column(s) to include on a secondary y-axis
 - Options:
 - column name | array of column names
 
y2SeriesType
 series
 Column to use as the series (groups) in a multi-series chart
 - Options:
 - column name
 
sort
 handleMissing
 emptySet
 Sets behaviour for empty datasets. Can throw an error, a warning, or allow empty. When set to 'error', empty datasets will block builds in `build:strict`. Note this only applies to initial page load - empty datasets caused by input component changes (dropdowns, etc.) are allowed.
  - Default:
 - error
 
emptyMessage
 Text to display when an empty dataset is received - only applies when `emptySet` is 'warn' or 'pass', or when the empty dataset is a result of an input component change (dropdowns, etc.).
 - Options:
 - string
 
Formatting & Styling
xFmt
 Format to use for x column
 - Options:
 - Excel-style format | built-in format name | custom format name
 
yFmt
 Format to use for y column(s)
 - Options:
 - Excel-style format | built-in format name | custom format name
 
y2Fmt
 Format to use for y2 column(s)
 - Options:
 - Excel-style format | built-in format name | custom format name
 
step
 stepPosition
 lineColor
 Color to override default series color. Only accepts a single color
 - Options:
 - CSS name | hexademical | RGB | HSL
 
lineOpacity
 % of the full color that should be rendered, with remainder being transparent
 - Options:
 - number (0 to 1)
 
- Default:
 - 1
 
lineType
 lineWidth
 Thickness of line (in pixels)
 - Options:
 - number
 
- Default:
 - 2
 
markers
 markerShape
 markerSize
 Size of each shape (in pixels)
 - Options:
 - number
 
- Default:
 - 8
 
colorPalette
 Array of custom colours to use for the chart. E.g., <code class=markdown>{['#cf0d06','#eb5752','#e88a87']}</code>
 - Options:
 - array of color strings (CSS name | hexademical | RGB | HSL)
 
seriesColors
 Apply a specific color to each series in your chart. Unspecified series will receive colors from the built-in palette as normal. Note the double curly braces required in the syntax `seriesColors=[object Object]`
 - Options:
 - object with series names and assigned colors
 
labels
 labelSize
 Font size of value labels
 - Options:
 - number
 
- Default:
 - 11
 
labelPosition
 labelColor
 Font color of value labels
 - Options:
 - CSS name | hexademical | RGB | HSL
 
labelFmt
 Format to use for value labels
 - Options:
 - Excel-style format | built-in format name | custom format name
 
yLabelFmt
 Format to use for value labels for series on the y axis. Overrides any other formats
 - Options:
 - Excel-style format | built-in format name | custom format name
 
y2LabelFmt
 Format to use for value labels for series on the y2 axis. Overrides any other formats
 - Options:
 - Excel-style format | built-in format name | custom format name
 
showAllLabels
 Axes
yLog
 yLogBase
 Base to use when log scale is enabled
 - Options:
 - number
 
- Default:
 - 10
 
xAxisTitle
 yAxisTitle
 y2AxisTitle
 xGridlines
 yGridlines
 y2Gridlines
 xAxisLabels
 yAxisLabels
 y2AxisLabels
 xBaseline
 yBaseline
 y2Baseline
 xTickMarks
 yTickMarks
 y2TickMarks
 yMin
 Starting value for the y-axis
 - Options:
 - number
 
yMax
 Maximum value for the y-axis
 - Options:
 - number
 
yScale
 y2Min
 Starting value for the y2-axis
 - Options:
 - number
 
y2Max
 Maximum value for the y2-axis
 - Options:
 - number
 
y2Scale
 Chart
title
 Chart title. Appears at top left of chart.
 - Options:
 - string
 
subtitle
 Chart subtitle. Appears just under title.
 - Options:
 - string
 
legend
 chartAreaHeight
 Minimum height of the chart area (excl. header and footer) in pixels. Adjusting the height affects all viewport sizes and may impact the mobile UX.
 - Options:
 - number
 
- Default:
 - 180
 
renderer
 Custom Echarts Options
echartsOptions
 Custom Echarts options to override the default options. See <a href='/components/echarts-options/' class=markdown>reference page</a> for available options.
 - Options:
 - {{exampleOption:'exampleValue'}}
 
seriesOptions
 Custom Echarts options to override the default options for all series in the chart. This loops through the series to apply the settings rather than having to specify every series manually using `echartsOptions` See <a href='/components/echarts-options/' class=markdown>reference page</a> for available options.
 - Options:
 - {{exampleSeriesOption:'exampleValue'}}
 
printEchartsConfig
 Interactivity
connectGroup
 Group name to connect this chart to other charts for synchronized tooltip hovering. Charts with the same `connectGroup` name will become connected
   Annotations
Line charts can include annotations using the ReferenceLine and ReferenceArea components. These components are used within a chart component like so:
<LineChart data="{sales_data}" x="date" y="sales">
	<ReferenceLine data="{target_data}" y="target" label="name" />
	<ReferenceArea xMin="2020-03-14" xMax="2020-05-01" />
</LineChart>