Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upReferenceError: document is not defined. #257
Open
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is my code
import {Chart} from 'frappe-charts/dist/frappe-charts.min.cjs'
data = {
labels: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
datasets: [
{ values: [18, 40, 30, 35, 8, 52, 17, -4] }
]
}
const DemoChart=new Chart( "#chart", {
data: data,
type: 'bar',
height: 140,
colors: ['red']
});
export default DemoChart