Hex color cannot be used in quickchart with apexchart

43 Views Asked by At

Apexchart version: 3.44

When specify hex code on plotOptions in heatmap, getting error

Error: Evaluation failed: TypeError: Cannot read property 'dataURI' of undefined at puppeteer_evaluation_script:2:52

I tried to change to string color, such as 'black', 'red', etc. No errors found but the background become gray instead.

            ...
            plotOptions: {
                heatmap: {
                    radius: 5,
                    colorScale: {
                        ranges: [
                            { name: 'asd', from: 0, to: 50, color: "#000000" ← here },
                            { name: 'samad', from: 51, to: 100, color: "#dddddd" },
                            { name: 'samad', from: 101, to: 200, color: "#cccccc" }
                        ]
                    },
                    useFillColorAsStroke: true,
                }
            }
            ...

Working URL in HTML: JSFiddle

QuickChart: URL

1

There are 1 best solutions below