Scatter Chart
Overview
A scatter plot uses dots to represent values for two different numeric variables. The position of each dot on the horizontal and vertical axis indicates values for an individual data point. Scatter plots are used to observe relationships between variables.
Example
SQL:
SELECT AMOUNT, SOLD_ON as YEAR, ITEM
FROM ITEM_SALESNow you will prepare your result set as shown in Data Preparation so that you have the SOLD_ON (YEAR) column as a numeric year and ITEM column both sorted ascending,
Click the create a chart button to display the Create Chart dialog. Now you will select the appropriate columns to use for the chart. In this example the value will be amount and the category will be month.
After clicking Create Chart, the line chart will be displayed.
Click the Create Chart button to create the chart.