diff --git a/charting/README.md b/charting/README.md
new file mode 100644
index 0000000..28fc26b
--- /dev/null
+++ b/charting/README.md
@@ -0,0 +1,138 @@
+# Charting
+
+## Highcharts
+
+[Highcharts](https://www.highcharts.com/) is a charting library with official React support, that helps visualize data.
+
+### Setup
+
+Install Highcharts by including it in your `package.json` with both `"highcharts"` and `"highcharts-react-official"`.
+
+Once installed, make a new file for your Highcharts react component, and import Highcharts:
+
+```
+import React from 'react'
+import { createRoot } from "react-dom/client"
+import Highcharts from 'highcharts'
+import HighchartsReact from 'highcharts-react-official'
+
+function SampleChart({ props }) {
+ const options = {
+ title: {
+ text: 'My chart'
+ },
+ series: [{
+ data: [1, 2, 3]
+ }]
+ }
+
+ return
+}
+
+const container = window.reactSampleMount
+const root = createRoot(container)
+root.render()
+```
+
+Then within your django template, set up a `div` for your chart where the id matches the name of the component:
+
+```
+
+
+
+ Loading chart...
+
+
+```
+
+And add the appropriate scripts to this same template where `window.` matches the value of the container in the component, and is using the `div` we just set up:
+
+```
+
+
+{% compress js %}
+
+{% endcompress %}
+```
+
+And now you should have a basic chart up and running! :clap::clap::clap:
+![Sample Chart](../images/sample_chart.png)
+
+### Adding Data
+
+A chart's no good without the data you're trying to show. You can have as many series as you like, and to add your data points to each, simply add them to the series:
+
+```
+const options = {
+ title: {
+ text: 'My chart'
+ },
+ series: [
+ {
+ name: 'First Series',
+ color: '#FF0000',
+ data: [
+ props.point1,
+ props.point2,
+ props.point3
+ ]
+ },
+ {
+ name: 'Second Series',
+ color: '#0000FF',
+ data: [
+ props.point4,
+ props.point5,
+ props.point6
+ ]
+ }
+ ]
+}
+```
+
+### Customization
+
+From here you can follow the Highcharts docs to modify your chart. Here are some features you can include.
+
+Changing the type of chart
+
+```
+const options = {
+ title: {
+ text: 'My chart'
+ },
+ chart: {
+ type: 'column' <<<
+ }
+}
+```
+
+Label the xAxis and/or yAxis:
+```
+title: {
+ text: '# of People Who Prefer Each Color'
+}
+xAxis: {
+ categories: [
+ "Red",
+ "Blue",
+ "Yellow",
+ "Green"
+ ],
+ title: {
+ text: "Colors",
+ style: {
+ fontSize: 11,
+ },
+ },
+},
+```
+
+Format the tooltip that shows on hover
+
+Label the amounts for each point on the chart (with dataLabels)
+
+Disable credits
\ No newline at end of file
diff --git a/images/sample_chart.png b/images/sample_chart.png
new file mode 100644
index 0000000..5115391
Binary files /dev/null and b/images/sample_chart.png differ