Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore - Chart - Clean up tooltip examples #10094

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,19 +124,31 @@ class EmbeddedLegend extends React.Component {
// Note: Container order is important
const CursorVoronoiContainer = createContainer("voronoi", "cursor");
const legendData = [
{ childName: 'cats', name: 'Cats' },
{
childName: 'limit',
name: 'Limit',
symbol: { fill: chart_color_orange_300.var, type: 'threshold' }
},
{ childName: 'cats', name: 'Cats' },
// Force extra space below for line wrapping
{
childName: 'cats',
name: '',
symbol: { fill: 'none' }
},
{
childName: 'cats',
name: '',
symbol: { fill: 'none' }
},
];
const labelFormatter = (datum) => {
// With box plot data, datum.y will also be an array
if (datum && (datum._min || datum._median || datum._max || datum._q1 || datum._q3)) {
return `q1: ${datum._q1}, q3: ${datum._q3}`;
return `Min: ${datum._min}, Max: ${datum._max}\nMedian: ${datum._median}\nQ1: ${datum._q1}, Q3: ${datum._q3}`;
}
return `${datum.y !== null ? datum.y : 'no data'}`;
const yVal = Array.isArray(datum.y) ? datum.y[0] : datum.y;
return yVal !== null ? yVal : 'no data';
}
return (
<div style={{ height: '350px', width: '600px' }}>
Expand All @@ -147,19 +159,7 @@ class EmbeddedLegend extends React.Component {
<CursorVoronoiContainer
cursorDimension="x"
labels={({ datum }) => labelFormatter(datum)}
labelComponent={
<ChartLegendTooltip
boxPlotData={{
max: { label: 'max' },
median: { label: 'mdn' },
min: { label: 'min' },
q1: { label: 'q1', isVisible: false },
q3: { label: 'q3', isVisible: false }
}}
legendData={legendData}
title={(datum) => datum.x}
/>
}
labelComponent={<ChartLegendTooltip legendData={legendData} title={(datum) => datum.x} />}
mouseFollowTooltips
voronoiDimension="x"
voronoiPadding={50}
Expand All @@ -182,15 +182,6 @@ class EmbeddedLegend extends React.Component {
>
<ChartAxis />
<ChartAxis dependentAxis showGrid />
<ChartBoxPlot
data={[
{ name: 'Cats', x: '2015', y: [1, 2, 3, 5] },
{ name: 'Cats', x: '2016', y: [3, 2, 8, 10] },
{ name: 'Cats', x: '2017', y: [2, 8, 6, 5] },
{ name: 'Cats', x: '2018', y: [1, 3, 2, 9] }
]}
name="cats"
/>
<ChartThreshold
data={[
{ name: 'Limit', x: '2015', y: 12 },
Expand All @@ -205,6 +196,15 @@ class EmbeddedLegend extends React.Component {
}
}}
/>
<ChartBoxPlot
data={[
{ name: 'Cats', x: '2015', y: [null] },
{ name: 'Cats', x: '2016', y: [3, 2, 8, 10] },
{ name: 'Cats', x: '2017', y: [2, 8, 6, 5] },
{ name: 'Cats', x: '2018', y: [1, 3, 2, 9] }
]}
name="cats"
/>
</Chart>
</div>
);
Expand All @@ -218,7 +218,7 @@ This demonstrates how to embed HTML within a tooltip. Combining cursor and voron

```js
import React from 'react';
import { Chart, ChartAxis, ChartBoxPlot, ChartCursorFlyout, ChartCursorTooltip, ChartThemeColor, createContainer } from '@patternfly/react-charts';
import { Chart, ChartAxis, ChartBoxPlot, ChartCursorTooltip, ChartThemeColor, createContainer } from '@patternfly/react-charts';

class EmbeddedHtml extends React.Component {
constructor(props) {
Expand Down Expand Up @@ -292,8 +292,6 @@ class EmbeddedHtml extends React.Component {
labels={({ datum }) => `${datum.y}`}
labelComponent={
<ChartCursorTooltip
centerOffset={{x: ({ center, flyoutWidth, width, offset = flyoutWidth / 2 + 10 }) => width > center.x + flyoutWidth + 10 ? offset : -offset}}
flyout={<ChartCursorFlyout />}
flyoutHeight={145}
flyoutWidth={110}
labelComponent={<HtmlLegendContent title={(datum) => datum.x} />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ This demonstrates how to embed HTML within a tooltip. Combining cursor and voron

```js
import React from 'react';
import { Chart, ChartArea, ChartAxis, ChartCursorFlyout, ChartCursorTooltip, ChartGroup, ChartPoint, ChartThemeColor, createContainer } from '@patternfly/react-charts';
import { Chart, ChartArea, ChartAxis, ChartCursorTooltip, ChartGroup, ChartPoint, ChartThemeColor, createContainer } from '@patternfly/react-charts';

class EmbeddedHtml extends React.Component {
constructor(props) {
Expand Down Expand Up @@ -327,12 +327,25 @@ class EmbeddedHtml extends React.Component {
{text.map((val, index) => (
<tr key={`tbody-tr-${index}`} style={this.baseStyles}>
<th width="20px">
<svg height="9.74" width="9.74" role="img">
{<ChartPoint x={0} y={0}
style={{ fill: theme.legend.colorScale[index] }}
symbol={legendData[index].symbol ? legendData[index].symbol.type : 'square'}
size={10}
/>}
<svg height="9.74" width="9.74">
<g>
<rect
role="presentation"
shapeRendering="auto"
width="9.74"
height="9.74"
style={{ fill: theme.legend.colorScale[index] }}
>
{
<ChartPoint
x={0}
y={0}
symbol={legendData[index].symbol ? legendData[index].symbol.type : 'square'}
size={5.6}
/>
}
</rect>
</g>
</svg>
</th>
<td width="55px">{legendData[index].name}</td>
Expand All @@ -356,8 +369,9 @@ class EmbeddedHtml extends React.Component {
labels={({ datum }) => `${datum.y !== null ? datum.y : 'no data'}`}
labelComponent={
<ChartCursorTooltip
centerOffset={{x: ({ center, flyoutWidth, width, offset = flyoutWidth / 2 + 10 }) => width > center.x + flyoutWidth + 10 ? offset : -offset}}
flyout={<ChartCursorFlyout />}
// The offset and flyout component are not necessary here, but included for completeness
// centerOffset={{x: ({ center, flyoutWidth, width, offset = flyoutWidth / 2 + 10 }) => width > center.x + flyoutWidth + 10 ? offset : -offset}}
// flyoutComponent={<ChartCursorFlyout />}
flyoutHeight={110}
flyoutWidth={({ datum }) => datum.y === null ? 160 : 125 }
labelComponent={<HtmlLegendContent legendData={legendData} title={(datum) => datum.x} />}
Expand Down
Loading