Are you interested in purchasing the entire website? If so, we will include an additional premium domain (freetimelearn.com) at no extra cost along with this domain.
Mail : freetimelearn@gmail.com
WhatsApp : +919966463846
let dataSource = powerbi.data.createDataSource({
type: "sql",
connectionString: "Server=<serverName>;Database=<databaseName>;Trusted_Connection=True;",
table: "Sales"
});
powerbi.datasets.createDataset({
dataSource: dataSource,
tables: [{ name: "Sales", columns: [{ name: "Product", type: "string" }, { name: "Amount", type: "decimal" }] }]
})
.then(function (dataset) {
let report = powerbi.report({
data: dataset,
type: "pie",
options: {
dataLabels: {
fontSize: 20
},
legend: {
visible: false
}
}
});
powerbi.render(document.getElementById("container"), report);
});