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

feat(SVG): support for viewport in SVG only providing width and height #1403

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 43 additions & 0 deletions src/charts/BarChart/BarChart.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,3 +445,46 @@ export function AccumulateRelativeStack() {

return root;
}

export function ViewBox() {
const root = document.createElement('div');

new BarChart(
root,
{
series: [
[
{ x: 1, y: 1 },
{ x: 3, y: 5 }
]
]
},
{
axisX: {
type: AutoScaleAxis,
onlyInteger: true
},
axisY: {
type: AutoScaleAxis,
onlyInteger: true
},
viewBox: {
width: 800,
height: 300
}
},
[
[
'screen and (max-width: 575px)',
{
viewBox: {
width: 400,
height: 150
}
}
]
]
);

return root;
}
3 changes: 2 additions & 1 deletion src/charts/BarChart/BarChart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ export class BarChart extends BaseChart<BarChartEventsTypes> {
options.width,
options.height,
options.classNames.chart +
(options.horizontalBars ? ' ' + options.classNames.horizontalBars : '')
(options.horizontalBars ? ' ' + options.classNames.horizontalBars : ''),
options.viewBox
);
const highLow =
options.stackBars &&
Expand Down
39 changes: 39 additions & 0 deletions src/charts/LineChart/LineChart.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -623,3 +623,42 @@ export function PathAnimation() {

return root;
}

export function ViewBox() {
const root = document.createElement('div');

new LineChart(
root,
{
labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
series: [
[12, 9, 7, 8, 5],
[2, 1, 3.5, 7, 3],
[1, 3, 4, 5, 6]
]
},
{
fullWidth: true,
chartPadding: {
right: 40
},
viewBox: {
width: 800,
height: 400
}
},
[
[
'screen and (max-width: 575px)',
{
viewBox: {
width: 400,
height: 300
}
}
]
]
);

return root;
}
3 changes: 2 additions & 1 deletion src/charts/LineChart/LineChart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ export class LineChart extends BaseChart<LineChartEventsTypes> {
this.container,
options.width,
options.height,
options.classNames.chart
options.classNames.chart,
options.viewBox
);

this.svg = svg;
Expand Down
31 changes: 31 additions & 0 deletions src/charts/PieChart/PieChart.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,3 +186,34 @@ export function Solid() {

return root;
}

export function ViewBox() {
const root = document.createElement('div');

new PieChart(
root,
{
series: [5, 3, 4]
},
{
chartPadding: 10,
viewBox: {
width: 350,
height: 350
}
},
[
[
'screen and (max-width: 575px)',
{
viewBox: {
width: 250,
height: 250
}
}
]
]
);

return root;
}
3 changes: 2 additions & 1 deletion src/charts/PieChart/PieChart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ export class PieChart extends BaseChart<PieChartEventsTypes> {
options.height,
options.donut
? options.classNames.chartDonut
: options.classNames.chartPie
: options.classNames.chartPie,
options.viewBox
);

this.svg = svg;
Expand Down
22 changes: 22 additions & 0 deletions src/core/creation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ describe('Core', () => {

expect(svg).toBeDefined();
expect(svg.classes()).toContain('ct-fish-bar');
expect(svg.attr('viewBox')).toBeFalsy();
expect(container).toContainElement(document.querySelector('#foo'));
expect(container).toContainElement(document.querySelector('#bar'));
});
Expand All @@ -53,6 +54,27 @@ describe('Core', () => {
document.querySelector('.ct-snake-bar')
);
});

it('should add viewBox to svg elements', () => {
const fixture = addMockWrapper(`
<div id="chart-container">
</div>
`);

const container: any =
fixture.wrapper.querySelector('#chart-container');
const svg = createSvg(container, '500px', '400px', 'ct-fish-bar', {
width: 300,
height: 200
});

expect(svg).toBeDefined();
expect(svg.classes()).toContain('ct-fish-bar');
expect(svg.attr('viewBox')).toEqual('0 0 300 200');
expect(container).toContainElement(
document.querySelector('.ct-fish-bar')
);
});
});

describe('createGrid', () => {
Expand Down
19 changes: 15 additions & 4 deletions src/core/creation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import type {
Label,
GridDrawEvent,
GridBackgroundDrawEvent,
LabelDrawEvent
LabelDrawEvent,
ViewBox
} from './types';
import type { EventEmitter } from '../event';
import type { Axis } from '../axes';
Expand All @@ -25,7 +26,8 @@ export function createSvg(
container: Element,
width: number | string = '100%',
height: number | string = '100%',
className?: string
className?: string,
viewBox?: ViewBox
) {
if (!container) {
throw new Error('Container element is not found');
Expand All @@ -52,6 +54,10 @@ export function createSvg(
svg.addClass(className);
}

if (viewBox) {
svg.attr({ viewBox: `0 0 ${viewBox.width} ${viewBox.height}` });
}

// Add the DOM node to our container
container.appendChild(svg.getNode());

Expand Down Expand Up @@ -97,8 +103,13 @@ export function createChartRect(svg: Svg, options: Options) {
const yAxisPosition = options.axisY?.position;
const xAxisPosition = options.axisX?.position;
// If width or height results in invalid value (including 0) we fallback to the unitless settings or even 0
let width = svg.width() || quantity(options.width).value || 0;
let height = svg.height() || quantity(options.height).value || 0;
let width =
options.viewBox?.width || svg.width() || quantity(options.width).value || 0;
let height =
options.viewBox?.height ||
svg.height() ||
quantity(options.height).value ||
0;
const normalizedPadding = normalizePadding(options.chartPadding);

// If settings were to small to cope with offset (legacy) and padding, we'll adjust
Expand Down
9 changes: 9 additions & 0 deletions src/core/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ export type Plugin = (chart: any, options?: any) => void;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type Meta = any;

export interface ViewBox {
width: number;
height: number;
}

export interface Options<
TXAxisOptions = AxisOptions,
TYAxisOptions = TXAxisOptions
Expand Down Expand Up @@ -67,6 +72,10 @@ export interface Options<
classNames?: Record<string, string>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
plugins?: (Plugin | [Plugin, any])[];
/**
* Define the ViewBox for an SVG, this is optional and only required if you need a scalable chart. This should be used together with responsive options to ensure a proper text size.
*/
viewBox?: ViewBox;
}

export interface AxisOptions {
Expand Down