Creating charts using only CSS might seem unusual, but it's entirely feasible. While many CSS chart examples exist, area charts (line charts with filled areas) are less common. This article demonstrates building an area chart using HTML and CSS, prioritizing semantic and accessible HTML.
HTML Structure
For simplicity, we'll use <li>
elements within a <ul></ul>
for data points. However, other HTML structures could be used depending on your project's needs. We'll leverage CSS custom properties to pass data to our stylesheet, assigning --start
and --end
properties to each <li>
element.
- 40%
- 80%
- 60%
- 100%
- 30%
The text content within each <li>
is optional; --start
and --end
are the crucial data points. However, including text improves accessibility for screen readers.
Design Considerations
Before styling, several design principles are important:
-
<li>
Unitless Data: Use unitless numbers (0 to 1) for
--start
and --end
in the HTML.
<li>
Dynamic Column Width: Avoid fixed widths for <li>
elements. Column width will be calculated dynamically based on the container's width divided by the number of data points.
<li>
Accessibility: While --start
and --end
are essential, including descriptive text within each <li>
enhances accessibility.
CSS Styling
Let's begin with the overall layout:
.area-chart { margin: 0; padding: 0; border: 0; width: 100%; max-width: var(--chart-width, 100%); /* Customizable width */ height: var(--chart-height, 300px); /* Customizable height */ display: flex; justify-content: stretch; align-items: stretch; flex-direction: row; } ul.area-chart { list-style: none; }
This sets up a flexible container. Next, style the individual columns:
.area-chart > li { flex-grow: 1; flex-shrink: 1; flex-basis: 0; background: var(--color, rgba(240, 50, 50, .75)); /* Default color */ clip-path: polygon( 0% calc(100% * (1 - var(--start))), 100% calc(100% * (1 - var(--end))), 100% 100%, 0% 100% ); }
The clip-path
property is key. It uses a polygon to define the visible area, dynamically adjusting based on --start
and --end
.
Multiple Datasets
For multiple datasets, a table offers better structure and accessibility:
40% | 80% |
60% | 100% |
The CSS for the table would adjust accordingly, using tbody
and td
selectors instead of ul
and li
, but the core clip-path
logic remains the same. Remember to style the td
elements with position: absolute
to layer them correctly.
Conclusion
This approach creates responsive area charts using pure CSS. For more advanced features, consider exploring dedicated data visualization frameworks.
The above is the detailed content of How to Make an Area Chart With CSS. For more information, please follow other related articles on the PHP Chinese website!

CSS Grid is a powerful tool for creating complex, responsive web layouts. It simplifies design, improves accessibility, and offers more control than older methods.

Article discusses CSS Flexbox, a layout method for efficient alignment and distribution of space in responsive designs. It explains Flexbox usage, compares it with CSS Grid, and details browser support.

The article discusses techniques for creating responsive websites using CSS, including viewport meta tags, flexible grids, fluid media, media queries, and relative units. It also covers using CSS Grid and Flexbox together and recommends CSS framework

The article discusses the CSS box-sizing property, which controls how element dimensions are calculated. It explains values like content-box, border-box, and padding-box, and their impact on layout design and form alignment.

Article discusses creating animations using CSS, key properties, and combining with JavaScript. Main issue is browser compatibility.

Article discusses using CSS for 3D transformations, key properties, browser compatibility, and performance considerations for web projects.(Character count: 159)

The article discusses using CSS gradients (linear, radial, repeating) to enhance website visuals, adding depth, focus, and modern aesthetics.

Article discusses pseudo-elements in CSS, their use in enhancing HTML styling, and differences from pseudo-classes. Provides practical examples.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
