Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

D3.js Supported versions?

Hi,

 

I am currently working with writing custom visuals in Power BI using the D3.js library. https://d3js.org/ 
Initially I had issues getting the D3 files packaged into the PowerBI packages via the pbiviz command line interface.

 

It looks as though custom visualisations only work with earlier versions of the D3 library (Version 3) Using V4 doesn't appear to work at all. 

 

I used the Microsoft SVG-Utils npm package to get going with a solution that works ( https://github.com/Microsoft/powerbi-visuals-utils-svgutils ) and this contains version 3.5.5

 

Is this the latest supported version?
Is there any information on when newer versions will be supported (if they aren't already)?

Thanks in advance,

Matt

  • v-evelk's avatar
    v-evelk
    6 years ago

    Hi Simon,

     

    If you build a visual under powerbi-visuals-tools higher than 2.5, you can use any npm library for your visual.

    The most of MS visuals currently use D3 v5.

     

    Kind Regards,

     

    Evgenii Elkin,
    Software Engineer
    Microsoft Power BI Custom Visuals
    [email protected]

7 Replies

  • nikitagrachev's avatar
    nikitagrachev
    Microsoft Employee

    Hello Anonymous,


    Yes, svg-utils don't support v4 yet, but it's in backlog.
    D3 v3 was one large library. You had to include all of it, even if you didn't need all of it.
    D3 v4 is actually a set of small modules. You can choose to use one or more as you need them.
    For example, if you need 'selection' from D3 v4, you can add the following packages to your project:
    https://www.npmjs.com/package/d3-selection
    https://www.npmjs.com/package/@types/d3-selection

      • v-viig's avatar
        v-viig
        Community Champion

        D3 v4 actually works. However, you can't use ES2015 module system (import/export).

        I suppose that you should use window.window.d3 to access d3 v4.

         

        Another option is to use prebundler such as webpack or rollup in order to generate a single JS file and use this file in pbiviz tools.

         

        Ignat Vilesov,

        Software Engineer

         

        Microsoft Power BI Custom Visuals

        [email protected]

  • Hi
    Is there anywhere you are able to see the latest supported version of D3.js?


    Thanks in advance
    Simon

    • v-evelk's avatar
      v-evelk
      Microsoft Employee

      Hi Simon,

       

      If you build a visual under powerbi-visuals-tools higher than 2.5, you can use any npm library for your visual.

      The most of MS visuals currently use D3 v5.

       

      Kind Regards,

       

      Evgenii Elkin,
      Software Engineer
      Microsoft Power BI Custom Visuals
      [email protected]