Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Dora
Helper I
Helper I

Custom Visual Issue

Dear All,

 

I want to make a gauge with changing a backgroud image and test it should also chage the values,I am currently developing my visual.My code is as follows,there is no compile error.But arc is not appearing in power bi. visual1.png

And also are there any easy way to develop my code.since I am new to typescript.Please help.

Best Regards,

Dora

3 REPLIES 3
az2451
Resolver I
Resolver I

You have to use the update method

 

 public update(options: VisualUpdateOptions) {

var xAxis = d3.svg.axis()
				this.g
				.append('g')
				.attr("class", "x axis")
				.attr("transform", "translate(0," + gHeight + ")") 
				.style("opacity", (settings.generalView.opacity/100))
				.call(d3.svg.axis().scale(x).orient("bottom"));

var yAxis = d3.svg.axis()
				this.g
				.append('g')
				.attr("class", "y axis")
				.style("opacity", (settings.generalView.opacity/100))
				.call(d3.svg.axis().scale(y).orient("left")); 

.....
}

your constructor will look like this

 

 constructor(options: VisualConstructorOptions) {
	
			this.svg = d3.select(options.element).append('svg'); 
			this.g = this.svg.append('g');

....
}

 

Giving following Error

 

 

c3.PNG

 

You are missing this in your update-method

   let settings = this.chartSettings = viewModel.settings;

 

 

I think this is helpful:

 

https://github.com/Microsoft/PowerBI-visuals-sampleBarChart

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.