holtzy / D3-graph-gallery

A collection of simple graphics made with D3.js
https://www.d3-graph-gallery.com
MIT License
789 stars 237 forks source link

Use d3 with rails 6 #70

Open NehaPeer opened 2 years ago

NehaPeer commented 2 years ago

Using ruby 2.7.3 Rails 6.1.3

I am using d3 but it throws the below error on console -

TypeError: setting getter-only property "format" using Ie https://d3js.org/d3.v4.min.js:2

https://d3js.org/d3.v4.min.js:2 https://d3js.org/d3.v4.min.js:2 https://d3js.org/d3.v4.min.js:2 On the view page, I have added the below code - <%= javascript_pack_tag "home/index" %>* Below line added app/javascript/packs/application.js - import * as d3 from "d3" window.d3 = d3 Please give suggestions on these.