Placeholder Image

Welcome to the Intermediate Custom Visuals

Dive into the fundamentals of Power BI's custom visuals.

Tutorial Image

This visual is designed to demonstrate the basic concepts of creating a custom visualization.

It features interactive charts and a simple data input.

Code snippet:


        // This is a placeholder.  Replace with your specific code.
        // You'll need to provide the relevant JavaScript and CSS to generate
        // the visual.  The 'data' variable will be the input data.
        const data = [
          { name: 'Alice', age: 30, city: 'New York' },
          { name: 'Bob', age: 25, city: 'London' },
          { name: 'Charlie', age: 35, city: 'Paris' }
        ];
        console.log(data);