You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, some charts import g-chartcolour as follows:
importgChartColourfrom'g-chartcolour';
This works fine using d3-bootloader but makes interoperability with other build systems difficult, given that g-chartcolour just exports each scale instead of collecting them as a default export. Instead, the following syntax is more accurate:
import*asgChartColourfrom'g-chartcolour';
The text was updated successfully, but these errors were encountered:
Currently, some charts import g-chartcolour as follows:
This works fine using d3-bootloader but makes interoperability with other build systems difficult, given that g-chartcolour just exports each scale instead of collecting them as a default export. Instead, the following syntax is more accurate:
The text was updated successfully, but these errors were encountered: