A column chart with negative and positive values. The yDomain function stretches the measured domain so it always includes zero, and a c scale colors each column by whether its value is up or down.
This is the server-side rendered version. ssr and percentRange on <LayerCake> put the scales in percentages, so the chart renders before the browser measures it. The axes are HTML components and the marks sit in a <ScaledSvg> that stretches to fit its box. The client-side version also adds yPadding and a label on each column. Both are set in pixels, which a percent-range chart can't use, so they are left out here.
+page.svelte
./_components/Column.svelte
./_components/AxisX.percent-range.html.svelte
./_components/AxisY.percent-range.html.svelte
./_data/yearChanges.csv
<script>import { LayerCake, ScaledSvg, Html } from'layercake';
import { scaleBand } from'd3-scale';
importColumnfrom'./_components/Column.svelte';
importAxisXfrom'./_components/AxisX.percent-range.html.svelte';
importAxisYfrom'./_components/AxisY.percent-range.html.svelte';
// The CSV rows are parsed, and their numbers typed, by @rollup/plugin-dsv. See vite.config.jsimport data from'./_data/yearChanges.csv';
const xKey = 'year';
const yKey = 'change';
</script><divclass="chart-container"><!--
The columns grow out of zero, so zero has to be inside the domain. The
`yDomain` function receives the [min, max] measured from the data and
stretches whichever end doesn't reach zero. It works whether the numbers
are all positive, all negative or a mix.
The `c` scale turns each row's "up" or "down" into a color for the
Column component.
The client-side version also adds `yPadding` and column labels. Both are
in pixels, which a percent-range chart can't use, so they are left out here.
--><LayerCakessrpercentRangepadding={{ top: 10, bottom: 20, left: 25 }}x={xKey}y={yKey}xScale={scaleBand().paddingInner(0.05)}yDomain={([min, max]) => [Math.min(0, min), Math.max(0, max)]}c={d => (d[yKey] < 0 ? 'down' : 'up')}cDomain={['up', 'down']}cRange={['#00e047', '#ff00cc']}{data}
>{#snippet children(k)}<Html><AxisXgridlines={false}tickMarkssnapLabels /><AxisY /></Html><ScaledSvg><Column /><!-- Columns run up and down from here, so mark it --><lineclass="zero"x1={k.xRange[0]}x2={k.xRange[1]}y1={k.yScale(0)}y2={k.yScale(0)} /></ScaledSvg>{/snippet}</LayerCake></div><style>/* Give the wrapper a width and height. LayerCake fills it. */.chart-container {
width: 100%;
height: 250px;
}
.zero {
stroke: #333;
/* The ScaledSvg stretches to fill its box, so undo that for the stroke */vector-effect: non-scaling-stroke;
}
</style>
<!--
@component
Generates an SVG column chart.
--><script>import { getLayerCakeContext } from'layercake';
const k = getLayerCakeContext();
/**
* @typedef {Object} Props
* @property {string} [fill='#00e047'] - The shape's fill color, used for every column. Set a `c` scale on `<LayerCake>` to color each column from its own row of data instead.
* @property {string} [stroke='#000'] - The shape's stroke color.
* @property {number} [strokeWidth=0] - The shape's stroke width.
* @property {boolean} [showLabels=false] - Show the numbers for each column.
*//** @type {Props} */let { fill, stroke = '#000', strokeWidth = 0, showLabels = false } = $props();
// Use the `fill` prop if there is one, then the `c` scale's color, then the default/** @param {any} d */functiongetFill(d) {
return fill ?? k.cGet?.(d) ?? '#00e047';
}
// A histogram passes a [start, end] pair through the x accessor, so the column spans the two/** @param {any} d */functioncolumnWidth(d) {
const vals = k.xGet(d);
returnMath.abs(vals[1] - vals[0]);
}
// Each column starts at zero and runs out to its value, so a negative value// hangs below zero. Keep zero inside your yDomain, or columns will be drawn// outside the chart.let zeroY = $derived(k.yScale(0));
</script><gclass="column-group">{#each k.dataas d, i}{@const valueY = k.yGet(d)}{@const xGot = k.xGet(d)}{@const xPos = Array.isArray(xGot) ? xGot[0] : xGot}{@const colWidth = k.xScale.bandwidth ? k.xScale.bandwidth() : columnWidth(d)}{@const yValue = k.y(d)}<rectclass="group-rect"data-id={i}data-range={k.x(d)}data-count={yValue}x={xPos}y={Math.min(zeroY, valueY)}width={colWidth}height={Math.abs(valueY - zeroY)}fill={getFill(d)}{stroke}stroke-width={strokeWidth}
/>{#if showLabels && yValue != null}{@const pointsUp = valueY < zeroY}<!--
Put the number just past the far end of the column: above a positive
column and below a negative one. Switching the text baseline keeps the
gap the same at any font size.
--><textx={xPos + colWidth / 2}y={valueY}dy={pointsUp ? -5 : 5}text-anchor="middle"dominant-baseline={pointsUp ? 'auto' : 'hanging'}>{yValue}</text
>
{/if}{/each}</g><style>text {
font-size: 12px;
}
</style>
<!--
@component
Generates an HTML x-axis along the bottom of the chart, for server-side rendered charts. If the x scale is a band scale, each tick sits in the middle of its band.
Positions are percentages when `percentRange={true}` and pixels otherwise, so this also works in a client-side chart with no setup. Set the `units` prop to `'%'` or `'px'` to override that.
--><script>import { getLayerCakeContext } from'layercake';
const k = getLayerCakeContext();
/**
* @typedef {Object} Props
* @property {boolean} [tickMarks=false] - Show a vertical mark at each tick.
* @property {boolean} [gridlines=true] - Show gridlines extending into the chart area.
* @property {number} [tickMarkLength=6] - The length of the tick mark.
* @property {boolean} [showBaseline=false] - Show a solid line along the bottom of the chart.
* @property {boolean} [snapLabels=false] - Instead of centering the text labels on the first and the last items, align them to the edges of the chart.
* @property {(d: any) => string} [format=d => d] - Formats a tick value for display.
* @property {number|Array<any>|((ticks: Array<any>) => Array<any>)} [ticks] - If this is a number, it passes that along to the [d3Scale.ticks](https://github.com/d3/d3-scale) function. If this is an array, hardcodes the ticks to those values. If it's a function, passes along the default tick values and expects an array of tick values in return. If nothing, it uses the default ticks supplied by the D3 function.
* @property {number} [tickGutter=0] - The gap in pixels between the bottom of the chart area and the start of the tick.
* @property {number} [dx=0] - Horizontal offset of the label in pixels.
* @property {number} [dy=0] - Vertical offset of the label in pixels.
* @property {'px'|'%'} [units] - Position with pixels or percentages. Defaults to `'%'` when `percentRange={true}`, otherwise `'px'`.
*//** @type {Props} */let {
tickMarks = false,
gridlines = true,
tickMarkLength = 6,
showBaseline = false,
snapLabels = false,
format = d => d,
ticks = undefined,
tickGutter = 0,
dx = 0,
dy = 0,
units = k.percentRange === true ? '%' : 'px'
} = $props();
let tickLen = $derived(tickMarks === true ? (tickMarkLength ?? 6) : 0);
let isBandwidth = $derived(typeof k.xScale.bandwidth === 'function');
/** @type {Array<any>} */let tickVals = $derived(
Array.isArray(ticks)
? ticks
: isBandwidth
? k.xScale.domain()
: typeof ticks === 'function'
? ticks(k.xScale.ticks())
: k.xScale.ticks(ticks)
);
let halfBand = $derived(isBandwidth ? k.xScale.bandwidth() / 2 : 0);
</script><divclass="axis x-axis"class:snapLabels>{#if showBaseline === true}<divclass="baseline"style="top:100%; width:100%;"></div>{/if}{#each tickVals as tick, i (tick)}{@const tickValUnits = k.xScale(tick)}{#if gridlines === true}<divclass="gridline"style:left="{tickValUnits + halfBand}{units}"style="top:0; bottom:0;"
></div>{/if}{#if tickMarks === true}<divclass="tick-mark"style:left="{tickValUnits + halfBand}{units}"style:height="{tickLen}px"style:bottom="{-tickLen - tickGutter}px"
></div>{/if}<divclass="tick tick-{i}"style:left="{tickValUnits + halfBand}{units}"style="top:calc(100% + {tickGutter}px);"
><divclass="text"style:top="{tickLen}px"style:transform="translate(calc(-50% + {dx}px), {dy}px)"
>{format(tick)}</div></div>{/each}</div><style>.axis,
.tick,
.tick-mark,
.gridline,
.baseline {
position: absolute;
}
.axis {
width: 100%;
height: 100%;
}
.tick {
font-size: 11px;
}
.gridline {
border-left: 1px dashed #aaa;
}
.tick-mark {
border-left: 1px solid #aaa;
}
.baseline {
border-top: 1px solid #aaa;
}
.tick.text {
color: #666;
position: relative;
white-space: nowrap;
transform: translateX(-50%);
}
/* Snapped end labels sit 40% inside their edge instead of centered on it */.axis.snapLabels.tick:last-child {
transform: translateX(-40%);
}
.axis.snapLabels.tick.tick-0 {
transform: translateX(40%);
}
</style>
<!--
@component
Generates an HTML y-axis along the left edge of the chart, for server-side rendered charts. If the y scale is a band scale, each tick sits in the middle of its band.
Positions are percentages when `percentRange={true}` and pixels otherwise, so this also works in a client-side chart with no setup. Set the `units` prop to `'%'` or `'px'` to override that.
--><script>import { getLayerCakeContext } from'layercake';
const k = getLayerCakeContext();
/**
* @typedef {Object} Props
* @property {boolean} [tickMarks=false] - Show a horizontal mark at each tick.
* @property {'even'|'above'} [labelPosition='even'] - Whether the label sits level with its tick ('even') or above it ('above').
* @property {boolean} [snapBaselineLabel=false] - When labelPosition='even', adjust the lowest label so that it sits above the tick mark.
* @property {boolean} [gridlines=true] - Show gridlines extending into the chart area.
* @property {number} [tickMarkLength] - Length of the tick mark in pixels. Defaults to the width of the widest label when `labelPosition` is 'above', otherwise 6.
* @property {(d: any) => string} [format=d => d] - Formats a tick value for display.
* @property {number|Array<any>|((ticks: Array<any>) => Array<any>)} [ticks=4] - If this is a number, it passes that along to the [d3Scale.ticks](https://github.com/d3/d3-scale) function. If this is an array, hardcodes the ticks to those values. If it's a function, passes along the default tick values and expects an array of tick values in return.
* @property {number} [tickGutter=0] - The gap in pixels between the left edge of the chart area and the tick.
* @property {number} [dx=0] - Horizontal offset of the label in pixels.
* @property {number} [dy=-3] - Vertical offset of the label in pixels.
* @property {number} [charPixelWidth=7.25] - Used to calculate the widest label length to offset labels. Adjust if the automatic tick length doesn't look right because you have a bigger font (or just set `tickMarkLength` to a pixel value).
* @property {'px'|'%'} [units] - Position with pixels or percentages. Defaults to `'%'` when `percentRange={true}`, otherwise `'px'`.
*//** @type {Props} */let {
tickMarks = false,
labelPosition = 'even',
snapBaselineLabel = false,
gridlines = true,
tickMarkLength = undefined,
format = d => d,
ticks = 4,
tickGutter = 0,
dx = 0,
dy = -3,
charPixelWidth = 7.25,
units = k.percentRange === true ? '%' : 'px'
} = $props();
/** @param {number} sum
* @param {string} val */functioncalcStringLength(sum, val) {
if (val === ',' || val === '.') return sum + charPixelWidth * 0.5;
return sum + charPixelWidth;
}
let isBandwidth = $derived(typeof k.yScale.bandwidth === 'function');
/** @type {Array<any>} */let tickVals = $derived(
Array.isArray(ticks)
? ticks
: isBandwidth
? k.yScale.domain()
: typeof ticks === 'function'
? ticks(k.yScale.ticks())
: k.yScale.ticks(ticks)
);
let widestTickLen = $derived(
Math.max(
10,
Math.max(...tickVals.map(d =>format(d).toString().split('').reduce(calcStringLength, 0)))
)
);
let tickLen = $derived(
tickMarks === true
? labelPosition === 'above'
? (tickMarkLength ?? widestTickLen)
: (tickMarkLength ?? 6)
: 0
);
let x1 = $derived(-tickGutter - (labelPosition === 'above' ? widestTickLen : tickLen));
let halfBand = $derived(isBandwidth ? k.yScale.bandwidth() / 2 : 0);
let maxTickValUnits = $derived(Math.max(...tickVals.map(k.yScale)));
</script><divclass="axis y-axis">{#each tickVals as tick, i (tick)}{@const tickValUnits = k.yScale(tick)}<divclass="tick tick-{i}"style="left:{k.xRange ? k.xRange[0] : 0}{units};top:{tickValUnits + halfBand}{units};"
>{#if gridlines === true}<divclass="gridline"style="top:0;"style:left="{x1}px"style:right="0px"></div>{/if}{#if tickMarks === true}<divclass="tick-mark"style:top="0"style:left="{x1}px"style:width="{tickLen}px"></div>{/if}<divclass="text"style:top="0"style:text-align={labelPosition === 'even' ? 'right' : 'left'}style:width="{widestTickLen}px"style:left="{-widestTickLen - tickGutter - (labelPosition === 'even' ? tickLen : 0)}px"style:transform="translate({dx + (labelPosition === 'even' ? -3 : 0)}px, calc(-50% + {dy +
(labelPosition === 'above' ||
(snapBaselineLabel === true && tickValUnits === maxTickValUnits)
? -3
: 4)}px))"
>{format(tick)}</div></div>{/each}</div><style>.axis,
.tick,
.tick-mark,
.gridline,
.text {
position: absolute;
}
.axis {
width: 100%;
height: 100%;
}
.tick {
font-size: 11px;
width: 100%;
}
.gridline {
border-top: 1px dashed #aaa;
}
.tick-mark {
border-top: 1px solid #aaa;
}
.tick.text {
color: #666;
}
</style>