Skip to content

Commit

Permalink
feat(xy): specify pixel and ratio width for bars (opensearch-project#…
Browse files Browse the repository at this point in the history
…1114)

Co-authored-by: Robert Monfera <monfera@users.noreply.github.com>
  • Loading branch information
markov00 and monfera committed Apr 13, 2021
1 parent 9c2eefc commit 6294d5f
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 18 deletions.
2 changes: 2 additions & 0 deletions packages/osd-charts/api/charts.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1562,6 +1562,8 @@ export interface RectBorderStyle {
export interface RectStyle {
fill?: Color | ColorVariant;
opacity: number;
widthPixel?: Pixels;
widthRatio?: Ratio;
}

// @public
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions packages/osd-charts/integration/tests/bar_stories.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,4 +227,21 @@ describe('Bar series stories', () => {
);
});
});
describe('custom bar width', () => {
it('pixel size', async () => {
await common.expectChartAtUrlToMatchScreenshot(
'http://localhost:9001/?path=/story/stylings--custom-series-styles-bars&knob-apply bar style (bar 1 series)_Chart Global Theme=true&knob-enable custom rect width (px)_Bar width=true&knob-rect width (px)_Bar width=15&knob-enable custom rect width (ratio)_Bar width=&knob-rect width (ratio)_Bar width=0.5&knob-border stroke_Bar 1 Style=blue&knob-border strokeWidth_Bar 1 Style=2&knob-border visible_Bar 1 Style=true&knob-rect fill_Bar 1 Style=#22C61A&knob-rect opacity_Bar 1 Style=0.3&knob-theme border stroke_Chart Global Theme=red&knob-theme border strokeWidth_Chart Global Theme=2&knob-theme border visible_Chart Global Theme=true&knob-theme opacity _Chart Global Theme=0.9',
);
});
it('ratio size', async () => {
await common.expectChartAtUrlToMatchScreenshot(
'http://localhost:9001/?path=/story/stylings--custom-series-styles-bars&knob-apply bar style (bar 1 series)_Chart Global Theme=true&knob-enable custom rect width (px)_Bar width=&knob-rect width (px)_Bar width=30&knob-enable custom rect width (ratio)_Bar width=true&knob-rect width (ratio)_Bar width=0.5&knob-border stroke_Bar 1 Style=blue&knob-border strokeWidth_Bar 1 Style=2&knob-border visible_Bar 1 Style=true&knob-rect fill_Bar 1 Style=#22C61A&knob-rect opacity_Bar 1 Style=0.3&knob-theme border stroke_Chart Global Theme=red&knob-theme border strokeWidth_Chart Global Theme=2&knob-theme border visible_Chart Global Theme=true&knob-theme opacity _Chart Global Theme=0.9',
);
});
it('pixel and ratio size', async () => {
await common.expectChartAtUrlToMatchScreenshot(
'http://localhost:9001/?path=/story/stylings--custom-series-styles-bars&knob-apply bar style (bar 1 series)_Chart Global Theme=true&knob-enable custom rect width (px)_Bar width=true&knob-rect width (px)_Bar width=40&knob-enable custom rect width (ratio)_Bar width=true&knob-rect width (ratio)_Bar width=0.2&knob-border stroke_Bar 1 Style=blue&knob-border strokeWidth_Bar 1 Style=2&knob-border visible_Bar 1 Style=true&knob-rect fill_Bar 1 Style=#22C61A&knob-rect opacity_Bar 1 Style=0.3&knob-theme border stroke_Chart Global Theme=red&knob-theme border strokeWidth_Chart Global Theme=2&knob-theme border visible_Chart Global Theme=true&knob-theme opacity _Chart Global Theme=0.9',
);
});
});
});
34 changes: 19 additions & 15 deletions packages/osd-charts/src/chart_types/xy_chart/rendering/bars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import { Scale } from '../../../scales';
import { ScaleType } from '../../../scales/constants';
import { CanvasTextBBoxCalculator } from '../../../utils/bbox/canvas_text_bbox_calculator';
import { Color, mergePartial } from '../../../utils/common';
import { clamp, Color, mergePartial } from '../../../utils/common';
import { Dimensions } from '../../../utils/dimensions';
import { BandedAccessorType, BarGeometry } from '../../../utils/geometry';
import { BarSeriesStyle, DisplayValueStyle } from '../../../utils/themes/theme';
Expand Down Expand Up @@ -107,8 +107,24 @@ export function renderBars(
return;
}

const x = xScaled + xScale.bandwidth * orderIndex;
const width = xScale.bandwidth;
const seriesIdentifier: XYChartSeriesIdentifier = {
key: dataSeries.key,
specId: dataSeries.specId,
yAccessor: dataSeries.yAccessor,
splitAccessors: dataSeries.splitAccessors,
seriesKeys: dataSeries.seriesKeys,
smHorizontalAccessorValue: dataSeries.smHorizontalAccessorValue,
smVerticalAccessorValue: dataSeries.smVerticalAccessorValue,
};

const seriesStyle = getBarStyleOverrides(datum, seriesIdentifier, sharedSeriesStyle, styleAccessor);

const maxPixelWidth = clamp(seriesStyle.rect.widthRatio ?? 1, 0, 1) * xScale.bandwidth;
const minPixelWidth = clamp(seriesStyle.rect.widthPixel ?? 0, 0, maxPixelWidth);

const width = clamp(seriesStyle.rect.widthPixel ?? xScale.bandwidth, minPixelWidth, maxPixelWidth);
const x = xScaled + xScale.bandwidth * orderIndex + xScale.bandwidth / 2 - width / 2;

const originalY1Value = stackMode === StackMode.Percentage ? y1 - (y0 ?? 0) : initialY1;
const formattedDisplayValue =
displayValueSettings && displayValueSettings.valueFormatter
Expand Down Expand Up @@ -156,18 +172,6 @@ export function renderBars(
}
: undefined;

const seriesIdentifier: XYChartSeriesIdentifier = {
key: dataSeries.key,
specId: dataSeries.specId,
yAccessor: dataSeries.yAccessor,
splitAccessors: dataSeries.splitAccessors,
seriesKeys: dataSeries.seriesKeys,
smHorizontalAccessorValue: dataSeries.smHorizontalAccessorValue,
smVerticalAccessorValue: dataSeries.smVerticalAccessorValue,
};

const seriesStyle = getBarStyleOverrides(datum, seriesIdentifier, sharedSeriesStyle, styleAccessor);

const barGeometry: BarGeometry = {
displayValue,
x,
Expand Down
7 changes: 7 additions & 0 deletions packages/osd-charts/src/utils/themes/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import { $Values } from 'utility-types';

import { Pixels, Ratio } from '../../common/geometry';
import { Color, ColorVariant, HorizontalAlignment, RecursivePartial, VerticalAlignment } from '../common';
import { Margins, SimplePadding } from '../dimensions';

Expand Down Expand Up @@ -398,6 +399,12 @@ export interface RectStyle {
fill?: Color | ColorVariant;
/** the opacity of each rect on the theme/series */
opacity: number;
/** The width of the rect in pixel. If expressed together with `widthRatio` then the `widthRatio`
* will express the max available size, where the `widthPixel` express the derived/min width. */
widthPixel?: Pixels;
/** The ratio of the width limited to [0,1]. If expressed together with `widthPixel` then the `widthRatio`
* will express the max available size, where the `widthPixel` express the derived/min width. */
widthRatio?: Ratio;
}

/** @public */
Expand Down
11 changes: 8 additions & 3 deletions packages/osd-charts/stories/stylings/10_custom_bars.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import { boolean, color, number } from '@storybook/addon-knobs';
import React from 'react';

import { Axis, BarSeries, Chart, Position, ScaleType, Settings } from '../../src';
import { Axis, BarSeries, Chart, Position, ScaleType, Settings, PartialTheme } from '../../src';
import * as TestDatasets from '../../src/utils/data_samples/test_dataset';

function range(title: string, min: number, max: number, value: number, groupId?: string, step = 1) {
Expand All @@ -39,7 +39,10 @@ function range(title: string, min: number, max: number, value: number, groupId?:

export const Example = () => {
const applyBarStyle = boolean('apply bar style (bar 1 series)', true, 'Chart Global Theme');

const changeRectWidthPixel = boolean('enable custom rect width (px)', false, 'Bar width');
const rectWidthPixel = range('rect width (px)', 0, 100, 30, 'Bar width', 1);
const changeRectWidthRatio = boolean('enable custom rect width (ratio)', false, 'Bar width');
const rectWidthRatio = range('rect width (ratio)', 0, 1, 0.5, 'Bar width', 0.01);
const barSeriesStyle = {
rectBorder: {
stroke: color('border stroke', 'blue', 'Bar 1 Style'),
Expand All @@ -52,7 +55,7 @@ export const Example = () => {
},
};

const theme = {
const theme: PartialTheme = {
barSeriesStyle: {
rectBorder: {
stroke: color('theme border stroke', 'red', 'Chart Global Theme'),
Expand All @@ -61,6 +64,8 @@ export const Example = () => {
},
rect: {
opacity: range('theme opacity ', 0, 1, 0.9, 'Chart Global Theme', 0.1),
widthPixel: changeRectWidthPixel ? rectWidthPixel : undefined,
widthRatio: changeRectWidthRatio ? rectWidthRatio : undefined,
},
},
};
Expand Down

0 comments on commit 6294d5f

Please sign in to comment.