HTML-D3
view release on metacpan or search on metacpan
lib/HTML/D3.pm view on Meta::CPAN
package HTML::D3;
use strict;
use warnings;
use Carp qw(carp);
use JSON::MaybeXS;
use Object::Configure;
use Params::Get;
use Scalar::Util;
# TODO: add animated tooltips to charts with legends
=head1 NAME
HTML::D3 - A simple Perl module for generating charts using D3.js.
=head1 VERSION
Version 0.11
=cut
our $VERSION = '0.11';
=head1 SYNOPSIS
use HTML::D3;
my $chart = HTML::D3->new(
width => 1024,
height => 768,
title => 'Sample Bar Chart'
);
my $data = [
['Category 1', 10],
['Category 2', 20],
['Category 3', 30]
];
my $html = $chart->render_bar_chart($data);
print $html;
$chart = HTML::D3->new(title => 'Sales Data');
$data = [
['Product A', 100],
['Product B', 150],
['Product C', 200]
];
$html = $chart->render_line_chart($data);
print $html;
=head1 DESCRIPTION
HTML::D3 is a Perl module that provides functionality to create simple charts using D3.js.
The module generates HTML and JavaScript code to render the chart in a web browser.
=head1 METHODS
=head2 new
my $chart = HTML::D3->new(%args);
Creates a new HTML::D3 object.
Accepts the following optional arguments:
=over 4
=item * C<width> - The width of the chart (default: 800).
lib/HTML/D3.pm view on Meta::CPAN
const color = d3.scaleOrdinal(d3.schemeCategory10);
// Add axes
chart.append("g")
.call(d3.axisLeft(y));
chart.append("g")
.attr("transform", `translate(0,\${height})`)
.call(d3.axisBottom(x))
.selectAll("text")
.attr("transform", "rotate(-45)")
.style("text-anchor", "end");
// Draw lines for each series
data.forEach((series, i) => {
const line = d3.line()
.x(d => x(d.label))
.y(d => y(d.value));
// Add line
chart.append("path")
.datum(series.data)
.attr("fill", "none")
.attr("stroke", color(i))
.attr("stroke-width", 2)
.attr("d", line);
// Add points and tooltips
chart.selectAll(\`circle.series-\${i}\`)
.data(series.data)
.join("circle")
.attr("class", \`series-\${i}\`)
.attr("cx", d => x(d.label))
.attr("cy", d => y(d.value))
.attr("r", 4)
.attr("fill", color(i))
.on("mouseover", (event, d) => {
tooltip.style("opacity", 1)
.style("transform", "translateY(0)")
.html(\`Series: <b>\${series.name}<\\/b><br>Label: <b>\${d.label}<\\/b><br>Value: <b>\${d.value}<\\/b>\`)
.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 30) + "px");
})
.on("mousemove", (event) => {
tooltip.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 30) + "px");
})
.on("mouseout", () => {
tooltip.style("opacity", 0)
.style("transform", "translateY(-10px)");
});
});
</script>
</body>
</html>
HTML
return $html;
}
=head2 render_multi_series_line_chart_with_legends
$html = $chart->render_multi_series_line_chart_with_legends($data);
Generates HTML and JavaScript code to render a chart of many lines with a static
colour legend. Each series gets a labelled colour swatch in the legend area.
Accepts the following arguments:
=over 4
=item * C<$data> - Same format as C<render_multi_series_line_chart_with_tooltips>:
an array reference of C<< { name, data } >> series hashes.
=back
Returns a string containing the complete HTML5 document. The stylesheet defines
a C<.legend> CSS class used by the D3-generated legend elements.
=head3 Errors
=over 4
=item * Throws C<Data must be an array of hashes> when C<$data> is not an ARRAY reference.
=back
=head3 Side Effects
None.
=head3 API SPECIFICATION
=head4 Input
$self : HTML::D3 -- required
$data : ArrayRef[ HashRef{ name: Str, data: ArrayRef[HashRef] } ] -- required
=head4 Output
Str -- complete HTML5 document; static colour legend rendered as SVG C<g> elements
with the C<.legend> CSS class applied via D3 C<.attr("class", "legend")>.
=cut
sub render_multi_series_line_chart_with_legends {
my($self, $data) = @_;
# Validate input data
die 'Data must be an array of hashes' unless ref($data) eq 'ARRAY';
# Generate JSON for data
my $json_data = encode_json($data);
# Generate HTML and D3.js code
my $html = $self->_preamble();
$html .= <<"HTML";
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>$self->{title}</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<style>
.tooltip {
position: absolute;
background-color: white;
border: 1px solid #ccc;
padding: 5px;
font-size: 12px;
pointer-events: none;
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.legend {
font-size: 12px;
cursor: pointer;
}
.legend rect {
stroke-width: 1;
stroke: #ccc;
}
</style>
</head>
<body>
<h1 style="text-align: center;">$self->{title}</h1>
<svg id="chart" width="$self->{width}" height="$self->{height}" style="border: 1px solid black;"></svg>
<div class="tooltip" id="tooltip"></div>
<script>
const data = $json_data;
const svg = d3.select("#chart");
const tooltip = d3.select("#tooltip");
const margin = { top: 20, right: 120, bottom: 40, left: 40 };
const width = $self->{width} - margin.left - margin.right;
const height = $self->{height} - margin.top - margin.bottom;
const chart = svg.append("g")
.attr("transform", `translate(\${margin.left},\${margin.top})`);
const legendArea = svg.append("g")
.attr("transform", `translate(\${width + margin.left + 20},\${margin.top})`);
// Extract all labels and flatten them into a unique array
const allLabels = Array.from(new Set(data.flatMap(series => series.data.map(d => d.label))));
const x = d3.scalePoint()
.domain(allLabels)
.range([0, width]);
const y = d3.scaleLinear()
.domain([0, d3.max(data.flatMap(series => series.data.map(d => d.value)))])
.nice()
.range([height, 0]);
// Define color scale for series
const color = d3.scaleOrdinal(d3.schemeCategory10);
// Add axes
chart.append("g")
.call(d3.axisLeft(y));
chart.append("g")
.attr("transform", `translate(0,\${height})`)
.call(d3.axisBottom(x))
.selectAll("text")
.attr("transform", "rotate(-45)")
.style("text-anchor", "end");
// Draw lines for each series
data.forEach((series, i) => {
const line = d3.line()
.x(d => x(d.label))
.y(d => y(d.value));
// Add line
chart.append("path")
.datum(series.data)
.attr("fill", "none")
.attr("stroke", color(i))
.attr("stroke-width", 2)
.attr("class", \`line-\${i}\`)
.attr("d", line);
// Add points and tooltips
chart.selectAll(\`circle.series-\${i}\`)
.data(series.data)
.join("circle")
.attr("class", \`series-\${i}\`)
.attr("cx", d => x(d.label))
.attr("cy", d => y(d.value))
.attr("r", 4)
.attr("fill", color(i))
.on("mouseover", (event, d) => {
tooltip.style("opacity", 1)
.style("transform", "translateY(0)")
.html(\`Series: <b>\${series.name}<\\/b><br>Label: <b>\${d.label}<\\/b><br>Value: <b>\${d.value}<\\/b>\`)
.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 30) + "px");
})
.on("mousemove", (event) => {
tooltip.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 30) + "px");
})
.on("mouseout", () => {
tooltip.style("opacity", 0)
.style("transform", "translateY(-10px)");
});
});
// Add legend
data.forEach((series, i) => {
const legend = legendArea.append("g")
.attr("transform", `translate(0, \${i * 20})`)
.attr("class", "legend");
legend.append("rect")
.attr("width", 12)
.attr("height", 12)
.attr("fill", color(i));
legend.append("text")
.attr("x", 20)
.attr("y", 10)
.text(series.name)
.style("alignment-baseline", "middle");
// Optional: Interactive legend for toggling visibility (uncomment to use)
// legend.on("click", () => {
// const visible = d3.selectAll(\`path.line-\${i}\`).style("opacity") === "1" ? 0 : 1;
// d3.selectAll(\`path.line-\${i}\`).style("opacity", visible);
// d3.selectAll(\`circle.series-\${i}\`).style("opacity", visible);
// });
});
</script>
</body>
</html>
HTML
return $html;
}
=head2 render_multi_series_line_chart_with_interactive_legends
$html = $chart->render_multi_series_line_chart_with_interactive_legends($data);
Generates HTML and JavaScript code to render a chart of many lines with interactive legends to filter, highlight or modify elements based on legend selections.
Accepts the following arguments:
=over 4
=item * C<$data> - Same format as C<render_multi_series_line_chart_with_tooltips>:
an array reference of C<< { name, data } >> series hashes.
=back
Returns a string containing the complete HTML5 document. Clicking a legend entry
toggles that series' opacity using an C<isVisible> boolean flag in the D3 click
handler (opacity is set to C<isVisible ? 0 : 1> on each click).
=head3 Errors
=over 4
=item * Throws C<Data must be an array of hashes> when C<$data> is not an ARRAY reference.
=back
=head3 Side Effects
None.
=head3 API SPECIFICATION
=head4 Input
$self : HTML::D3 -- required
$data : ArrayRef[ HashRef{ name: Str, data: ArrayRef[HashRef] } ] -- required
=head4 Output
Str -- complete HTML5 document; legend clicks toggle series visibility.
The C<isVisible> JS variable tracks current visibility state.
Opacity toggled by C<isVisible ? 0 : 1>.
=cut
sub render_multi_series_line_chart_with_interactive_legends
{
my ($self, $data) = @_;
# Validate input data
die 'Data must be an array of hashes' unless ref($data) eq 'ARRAY';
# Generate JSON for data
my $json_data = encode_json($data);
# Generate HTML and D3.js code
my $html = $self->_preamble();
$html .= <<"HTML";
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>$self->{title}</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<style>
.tooltip {
position: absolute;
background-color: white;
border: 1px solid #ccc;
padding: 5px;
font-size: 12px;
pointer-events: none;
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.legend {
font-size: 12px;
cursor: pointer;
}
.legend rect {
stroke-width: 1;
stroke: #ccc;
}
</style>
</head>
<body>
<h1 style="text-align: center;">$self->{title}</h1>
<svg id="chart" width="$self->{width}" height="$self->{height}" style="border: 1px solid black;"></svg>
<div class="tooltip" id="tooltip"></div>
<script>
const data = $json_data;
const svg = d3.select("#chart");
const tooltip = d3.select("#tooltip");
const margin = { top: 20, right: 150, bottom: 40, left: 40 };
const width = $self->{width} - margin.left - margin.right;
const height = $self->{height} - margin.top - margin.bottom;
const chart = svg.append("g")
.attr("transform", `translate(\${margin.left},\${margin.top})`);
const legendArea = svg.append("g")
.attr("transform", `translate(\${width + margin.left + 20},\${margin.top})`);
// Extract all labels and flatten them into a unique array
const allLabels = Array.from(new Set(data.flatMap(series => series.data.map(d => d.label))));
const x = d3.scalePoint()
.domain(allLabels)
.range([0, width]);
const y = d3.scaleLinear()
.domain([0, d3.max(data.flatMap(series => series.data.map(d => d.value)))])
.nice()
.range([height, 0]);
// Define color scale for series
const color = d3.scaleOrdinal(d3.schemeCategory10);
// Add axes
chart.append("g")
.call(d3.axisLeft(y));
chart.append("g")
.attr("transform", `translate(0,\${height})`)
.call(d3.axisBottom(x))
.selectAll("text")
.attr("transform", "rotate(-45)")
.style("text-anchor", "end");
// Draw lines for each series
data.forEach((series, i) => {
const line = d3.line()
.x(d => x(d.label))
.y(d => y(d.value));
// Add line
chart.append("path")
.datum(series.data)
.attr("fill", "none")
.attr("stroke", color(i))
.attr("stroke-width", 2)
.attr("class", \`line-\${i}\`)
.attr("d", line);
// Add points and tooltips
chart.selectAll(\`circle.series-\${i}\`)
.data(series.data)
.join("circle")
.attr("class", \`series-\${i}\`)
.attr("cx", d => x(d.label))
.attr("cy", d => y(d.value))
.attr("r", 4)
.attr("fill", color(i))
.on("mouseover", (event, d) => {
tooltip.style("opacity", 1)
.style("transform", "translateY(0)")
.html(\`Series: <b>\${series.name}<\\/b><br>Label: <b>\${d.label}<\\/b><br>Value: <b>\${d.value}<\\/b>\`)
.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 30) + "px");
})
.on("mousemove", (event) => {
tooltip.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 30) + "px");
})
.on("mouseout", () => {
tooltip.style("opacity", 0)
.style("transform", "translateY(-10px)");
});
});
// Add legend with interactivity
data.forEach((series, i) => {
const legend = legendArea.append("g")
.attr("transform", `translate(0, \${i * 20})`)
.attr("class", "legend")
.on("click", () => {
const isVisible = d3.selectAll(\`path.line-\${i}\`).style("opacity") === "1";
// Toggle visibility
d3.selectAll(\`path.line-\${i}\`).style("opacity", isVisible ? 0 : 1);
d3.selectAll(\`circle.series-\${i}\`).style("opacity", isVisible ? 0 : 1);
// Dim legend if series is hidden
legend.select("text").style("opacity", isVisible ? 0.5 : 1);
});
legend.append("rect")
.attr("width", 12)
.attr("height", 12)
.attr("fill", color(i));
legend.append("text")
.attr("x", 20)
.attr("y", 10)
.text(series.name)
.style("alignment-baseline", "middle");
});
</script>
</body>
</html>
HTML
return $html;
}
sub _preamble
{
my $html = <<'HTML';
<!DOCTYPE html>
<html lang="en">
HTML
return $html;
}
sub _head
{
my $self = shift;
my $html = <<"HTML";
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>$self->{title}</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
</head>
HTML
return $html;
}
=head1 SUPPORT
This module is provided as-is without any warranty.
Please report any bugs or feature requests to C<bug-html-d3 at rt.cpan.org>,
or through the web interface at
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTML-D3>.
I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc HTML::D3
You can also look for information at:
=head1 BUGS
It would help to have the render routine to return the head and body components separately.
=head1 SEE ALSO
=over 4
lib/HTML/D3.pm view on Meta::CPAN
=item * L<Test Dashboard|https://nigelhorne.github.io/HTML-D3/coverage/>
=back
=head1 AUTHOR
Nigel Horne <njh@nigelhorne.com>
=encoding UTF-8
=head1 FORMAL SPECIFICATION
=head2 render_bar_chart
render_bar_chart : HTML::D3 à (ArrayRef | undef) â Str ⪠â¥
pre data = undef â die "Data is not optional"
pre ref(data) â 'ARRAY' â die "Data must be an array of arrays"
post result â Str
post "<!DOCTYPE" â result
post â d â data . d[0] â result
=head2 render_line_chart
render_line_chart : HTML::D3 à (ArrayRef | undef) â Str ⪠â¥
pre ref(data) â 'ARRAY' â die "Data must be an array of arrays"
post result â Str
post "<!DOCTYPE" â result
post "d3.scalePoint" â result â§ "d3.line()" â result
=head2 render_lint_chart_with_tooltips
render_line_chart_with_tooltips : HTML::D3 à (ArrayRef | undef) â Str ⪠â¥
pre ref(data) â 'ARRAY' â die "Data must be an array of arrays"
post result â Str
post "<!DOCTYPE" â result
post "mouseover" â result
post "</b>" â result â§ "<\/b>" â result
=head2 render_multi_series_line_chart_with_tooltips
render_multi_series_line_chart_with_tooltips : HTML::D3 à (ArrayRef | undef) â Str ⪠â¥
pre ref(data) â 'ARRAY' â die "Data must be an array of hashes"
post result â Str
post "<!DOCTYPE" â result
post "</b>" â result â§ "<\/b>" â result
=head2 render_multi_series_line_chart_with_animated_tooltips
render_multi_series_line_chart_with_animated_tooltips : HTML::D3 à (ArrayRef | undef) â Str ⪠â¥
pre ref(data) â 'ARRAY' â die "Data must be an array of hashes"
post result â Str
post "<!DOCTYPE" â result
post "translateY" â result
post "</b>" â result â§ "<\/b>" â result
=head2 render_multi_series_line_chart_with_legends
render_multi_series_line_chart_with_legends : HTML::D3 à (ArrayRef | undef) â Str ⪠â¥
pre ref(data) â 'ARRAY' â die "Data must be an array of hashes"
post result â Str
post "<!DOCTYPE" â result
post ".legend" â result
=head2 render_multi_series_line_chart_with_interactive_legends
render_multi_series_line_chart_with_interactive_legends : HTML::D3 à (ArrayRef | undef) â Str ⪠â¥
pre ref(data) â 'ARRAY' â die "Data must be an array of hashes"
post result â Str
post "<!DOCTYPE" â result
post "isVisible" â result
post "isVisible ? 0 : 1" â result
post ".legend" â result
=head1 LICENSE AND COPYRIGHT
Copyright 2025-2026 Nigel Horne.
Usage is subject to the GPL2 licence terms.
If you use it,
please let me know.
=cut
1;
( run in 2.403 seconds using v1.01-cache-2.11-cpan-364913b4093 )