Forum Discussion
vjnvinod
4 years agoImpactful Individual
looking for a specific visual
HI Team, I am looking for a specific visual like the below i have looked around, didn't find this, is there anyway i can have this visual in power BI desktop?
TheoC
4 years agoCommunity Champion
Hi vjnvinod
I have not see this visual in Power BI before. I just checked the Power BI Visuals AppSource and couldn't find anything of the like either.
Best of luck with the search!
Theo
- TheoC4 years agoCommunity Champion
Hi vjnvinod I don't believe so. However, if you go to the Charticulator site, you might be able to get a better understanding of the possibilities.
- vjnvinod4 years agoImpactful Individual
I managed to resolve it by using python scripts
x_data=dataset.Statusplt.plot(x_data, d)plt.plot(x_data, -d)plt.bar(x_data, height=2*d, bottom=-d, width=0.3)#plt.axis('off')ax = plt.gca()ax.set_xticklabels(x_data)ax.set_yticklabels([])plt.yticks([])for data,x in zip(d, range(5)) :plt.text(x, data+4, data)plt.show()