Can someone help achieving a donut in this following format using chart.js?

really appreciate your help.
Thanks
var data = {
labels: ["Segment 1", "Segment 2", "Segment 3"],
datasets: [
{
data: [40, 60], // Sizes of Profit segments (40% and 60%)
backgroundColor: ["lightgreen", "transparent"]
},
{
data: [25, 75], // Sizes of Income segments (25% and 75%)
backgroundColor: ["lightcoral", "transparent"]
},
{
data: [10, 90], // Sizes of Loss segments (10% and 90%)
backgroundColor: ["lightblue", "transparent"]
}
]
};
var options = {
cutoutPercentage: 75, // Adjust this value to control the size of the hole in the doughnut
circumference: Math.PI, // Set to Math.PI for a semi-circle or adjust according
rotation: -Math.PI / 2, // Start angle for the doughnut chart
animation: { animateRotate: true, animateScale: false },
plugins: { datalabels: { display: false } }
};
// Get the canvas element
var ctx = document.getElementById("multiDoughnutChart").getContext("2d");
// Create the doughnut chart
var myChart = new Chart(ctx, {
type: "doughnut",
data: data,
options: options
});
Above is my try but not getting the result like i am looking for.
dataset.borderWidth(see Label Color Callback).Please take a look at your amended and runnable code below and see how it works.