Building Beautiful Data Stories with Pyxie
Learn how to enhance your Pyxie content with beautiful interactive charts and data visualizations that blend seamlessly with your markdown.
Data can tell powerful stories. With Pyxie and FastHTML, you can easily enhance your content with beautiful interactive visualizations that blend seamlessly with your markdown content. In this guide, we'll walk through adding charts to your Pyxie pages.
Adding Charts to Your Content
Pyxie makes it incredibly simple to add data visualizations to your content. You don't need to be a JavaScript expert or learn complex charting libraries. Instead, you can use the chart components with Python syntax right within your markdown files.
Here's how it works:
You write your normal markdown content
When you want to add a chart, you use a
<fasthtml>
blockInside the block, you import chart components, prepare your data, and display the chart
The rendered chart appears inline with your content
Creating a Simple Visualization
Let's start with a basic example: adding a line chart that shows monthly trends. Here's how you'd do it:
That's all it takes! ↑ That chart above is rendered directly from the code inside a <fasthtml>
block. Let's look at the markdown that produced it:
<fasthtml>
from components import LineChart
# Prepare the data (category, [values])
data = [
("Jan", [30, 40]),
("Feb", [40, 45]),
("Mar", [35, 50]),
("Apr", [50, 55]),
("May", [60, 70])
]
# Create and display the chart
show(LineChart(data, "Monthly Trends", "auto"))
</fasthtml>
Notice how the chart is rendered directly within your content flow, making it feel like a natural part of your document.
Combining Multiple Charts
Often, you'll want to display multiple visualizations to tell a more complete data story. Let's create a more complete example with a bar chart and a pie chart side by side:
Regional Sales Performance
Sales by Region
Market Share
Figure 1: Regional sales breakdown showing both absolute performance and relative market share.
This example demonstrates how you can:
Create a responsive layout (switching from one to two columns on different screen sizes)
Add proper headings and descriptions to your visualizations
Combine multiple chart types to show different aspects of the same data
Style the container to visually separate it from regular text content
Making Charts Interactive
One of the most powerful features of embedded charts is interactivity. Let's create a chart that responds to user input:
Interactive Sales Dashboard
This example demonstrates:
Creating controls that users can interact with
Setting up event handlers to respond to user input
Updating visualizations based on user selection
Providing feedback through UI changes
Best Practices
When adding data visualizations to your content, keep these guidelines in mind:
-
Choose the Right Chart Type
Use line charts for trends over time
Use bar charts for comparing categories
Use pie charts for showing proportions
Consider your audience's data literacy
-
Optimize for Performance
Load chart libraries only when needed
Use appropriate data formats
Consider lazy loading for charts below the fold
-
Make Charts Accessible
Add clear titles and labels
Include descriptive alt text
Provide data tables when appropriate
Use sufficient color contrast
-
Keep it Simple
Focus on the story you're telling
Remove unnecessary decorations
Use consistent styling across charts
Align with your site's design
For more examples and advanced techniques, check out:
The Art of Layouts - Learn about layout composition
Content Features - Explore other interactive features
Building a Blog - See how charts fit into a complete site
Conclusion
Adding data visualizations to your Pyxie content is a powerful way to enhance your storytelling. By combining markdown text with interactive charts, you can create engaging experiences that help readers understand complex information.
The examples in this guide are just the beginning. As you get more comfortable with embedding visualizations, you can create increasingly sophisticated data stories that bring your content to life.
Ready to get started? Try adding a simple chart to your next Pyxie page and see how it transforms your content!