In your application, you can display data in charts, like those used elsewhere in New Relic's user interface. The New Relic One SDK provides React components for different chart types.
Once you decide the kind of data you want to present, either from New Relic or some other source, you supply that data to your chart, using props.
Query New Relic data
In some cases, you want to fetch data from New Relic's database. For example, you may want to display a line chart which plots the number of transactions your application receives over time.
With your chart component, set the accountId
and query
props to query your New Relic data using NRQL:
<LineChart accountId={1234} query="SELECT count(*) FROM Transaction" />;
Alternatively, you can fetch data with a NrqlQuery
and set the data
prop:
<NrqlQuery accountId={1234} query="SELECT count(*) FROM Transaction"> {({ data }) => <LineChart data={data} />}</NrqlQuery>;
If you're looking to visualize New Relic data, such as your web application's response times or your server's throughput, querying data in your charts is the way to go. But what if you want to create charts that aren't focused on New Relic data? The data
prop is flexible enough that you can supply any arbitrary data, as long as it matches the standardized format.
Craft custom data
Whether you use custom data sets or the results of a NrqlQuery
, a chart's data
prop must be an array of objects where each object has both of the following fields:
metadata
: Defines how the chart presents its datadata
: An array of data points that appear on the chart
For example, create a chart consisting of a line between two points by supplying two x-y coordinates in its data
field:
const data = [ { metadata: { id: 'series-1', name: 'My series', viz: 'main', color: 'blue', }, data: [ { x: 0, y: 0, }, { x: 20, y: 10, }, ], },];<LineChart data={data} />;
This LineChart
plots a line between coordinates (0, 0)
and (20, 10)
. Use x-y coordinates for all two-dimensional chart formats. For other formats, which you'll learn more about later, use other types of data points.
Because data
accepts an array, you can supply two series to the same chart:
const data = [ { metadata: { id: 'series-1', name: 'My series', viz: 'main', color: 'blue', }, data: [ { x: 0, y: 0, }, { x: 20, y: 10, }, ], }, { metadata: { id: 'series-2', name: 'My second series', viz: 'main', color: 'red', }, data: [ { x: 0, y: 50, }, { x: 20, y: 100, }, ], },];
<LineChart data={data} />;
In this example, you create a single chart with two series. The first series contains the line from the last example. The second series contains a line between points (0, 50)
and (20, 100)
. When using two series in a single chart, like this, you may want to define how the chart represents each series. Use metadata
to define those elements.
Metadata
A series's metadata
defines certain features of the series, itself, such as how it should be displayed in your chart. metadata
consists of the following attributes:
Attribute | Description |
---|---|
| The series's identifier. Two series having the same In general, use a unique |
| The series's name. |
| The series's color. Most visualizations use this value to differentiate series. Some visualizations, like Use any valid CSS color representation, such as |
| The series's visual style. While you most often use
|
| You can assign a unit type to each axis on a chart. The chart will present data according to the unit type you set with
|
Data
While a data series can contain any arbitrary values, a chart only uses values which adhere to its type. So, create your data points according to the chart type:
Series Type | Example | Description |
---|---|---|
Unidimensional |
| The chart plots data points using |
Two-dimensional |
| The chart plots data points using |
Funnel |
| The chart plots data according to labels. Use this format with |
Table |
| The chart plots data according to table columns. You must specify table columns in the |
Event |
| The chart plots the event's width based on |
Histogram |
| The chart plots the series's width based on |
Tip
JsonChart
is a special case because it processes any valid data. For example, you can set an arbitrary JSON object for the chart's data
:
const data = { data: [ { id: 1, name: 'Foo', price: 123, tags: ['Bar', 'Eek'], stock: { warehouse: 300, retail: 20, } } ],}
<JsonChart data={data} />
Special States
In previous sections, you learned that a chart's data
is an array of series. But you can use special values to present special chart states:
null
orundefined
: Indicates the chart is “loading” its data. In this state, the chart shows a placeholder data set.[]
: Indicates there is no data to show. The chart states, "No chart data available".
Configure your chart
As you've seen, you use query
or data
to supply data to your chart, but you can configure other aspects of your chart, too, such as visual settings and click and hover event listeners. Read the documentation for the chart you're using for more specific information.
Chart Groups
Under some circumstances, you might want to synchronize events, such as dragging or scrubbing, across multiple charts. To do this, use a ChartGroup
. All charts in a ChartGroup
synchronize their events:
<ChartGroup> <Stack> <StackItem> <LineChart accountId={1} query="SELECT count(*) FROM Transaction SINCE 1 hour ago" /> </StackItem> <StackItem> <AreaChart accountId={1} query="SELECT count(*) FROM Synthetics SINCE 1 day ago" /> </StackItem> </Stack></ChartGroup>;
Ideally, group charts that are conceptually related, and separate charts that are conceptually unrelated.
Next Step
Read the documentation specific to the chart you'd like to use to learn specifics about that chart's behavior and configuration.