Skip to content

endjin/aspnetcore-razor-htmx-chartjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASP.NET Core + Razor + HTMX + Chart.js Demo

A sample demonstrating how to combine ASP.NET Core, Razor, and HTMX to power interactive Chart.js visualisations.

Showing a bar chart rendered by Chart.js using HTMX to offer client side interactivity

HTMX is a simple & elegant library that enables a SPA-like experience without the complexity (and dependency hell) of a full SPA framework. It's a great fit for server-side frameworks like ASP.NET Core, and at endjin we've been migrating all of our web apps to use it.

While HTMX has established patterns for many common UX interactions, integrating with client-side libraries like Chart.js is less well documented. HTMX's primary use case is to interact with the server, which renders (shifting the complexity from the client to the server) and returns HTML fragments, which HTMX then injects into the DOM, and deals with transitions, animations etc, to provide a seamless modern SPA-like experience. HTMX deals with hypermedia (HTML), not data, whereas Chart.js is designed to interact with more traditional Restful JSON APIs.

This example demonstrates how to bridge the two worlds by using HTMX's extensibility mechanisms to intercept the server response, parse the JSON payload, and use this to update the DOM and Chart.js visualisation. Client-side state and entity ids are round-tripped, using some HAL and HATEOAS inspired techniques. Client-side element state (previous / next buttons) is calculated by comparing the self, previous and next links in the JSON payload.

Initial page / Chart.js state is set by Razor, and previous / next buttons are adorned with the hx-get attribute to trigger a HTTP GET request to the server. hx-ext="update_chartjs" is used to specify the HTMX extension to use to process the response. We use the transformResponse extension point to intercept the response, parse the JSON payload, update Chart.js visualisation, and the DOM. The hx-swap="none" prevents HTMX's update behaviour from running, as we specify our behaviour in the extension.

If you have any questions, defect reports, or suggestions for improvements, please raise an issue.

Licenses

This project is available under the Apache 2.0 open source license.

GitHub license

Project Sponsor

This project is sponsored by endjin, a UK based Technology Consultancy which specializes in Data, AI, DevOps & Cloud, and is a .NET Foundation Corporate Sponsor.

We help small teams achieve big things.

We produce two free weekly newsletters:

  • Azure Weekly for all things about the Microsoft Azure Platform
  • Power BI Weekly for all things Power BI, Microsoft Fabric, and Azure Synapse Analytics

Keep up with everything that's going on at endjin via our blog, follow us on Twitter, YouTube or LinkedIn.

We have become the maintainers of a number of popular .NET Open Source Projects:

And we have over 50 Open Source projects of our own, spread across the following GitHub Orgs:

And the DevOps tooling we have created for managing all these projects is available on the PowerShell Gallery.

For more information about our products and services, or for commercial support of this project, please contact us.

About

A sample demonstrating how to combine aspnetcore, Razor, and HTMX to power interactive Chart.js visualisations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published