# Product #6: QuickChart.io


![](https://cdn.hashnode.com/res/hashnode/image/upload/v1646048848372/DCJz_e40w.png)

`**Name**: QuickChart.io   **Usage**: Generate chart images for email, reports, and anywhere else      **Description**:    - QuickChart is an open API for generating chart images, PDFs, and QR codes.   - These charts and QR codes are simple images, which can be easily embedded in non-dynamic environments such as email, SMS, chat rooms, and so on.   - Use Salesforce formula fields to embed charts and QR codes in record detail page, reports   and emails.      **Favourite Feature**:    - No code solution to generate dynamic charts and QR code in Salesforce.    - You can use text fields (which contains the chart data or QR code string) in the formula field to generate dynamic charts and QR code in run time.   **Link**: https://quickchart.io   Repo: https://github.com/typpo/quickchart`

`**Example**:`  
`Create a Salesforce text formula field with this value to generate a chart.`

```
IMAGE('https://quickchart.io/chart?c={type:"bar",data:{labels:["Q1","Q2","Q3","Q4"], datasets:[{label:"Users",data:[50,60,70,180]},{label:"Revenue",data:[100,200,300,400]}]}}', 'revenue')
```

`Create a Salesforce text formula field with this value to generate` `QRCode:`

```
IMAGE('https://quickchart.io/qr?text=www.sfdcproducthunt.com','www.sfdcproducthunt.com')
```

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1646048851005/YHewhxwVO.png)

Chart and QR Code in Record Detail Page

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1646048853033/mMRZEnxZ2.png)

Chart in Salesforce Report

