Forum Discussion
Create new custom visuals from the scratch code
Hi Krunal,
You can find more information on below github repository.
https://github.com/Microsoft/PowerBI-visuals
Hi BhaveshPatel,
I see this post, But how can I write a code? Is there any documentation for how to code? I am using the code but it gives me an error.
Argument of type '{ value: string | number | boolean | Date; identity: string; }' is not assignable to parameter of type 'CategoryViewModel'.
Types of property 'value' are incompatible.
Type 'string | number | boolean | Date' is not assignable to type 'string'.
Type 'number' is not assignable to type 'string'
- BhaveshPatel9 years agoSuper User
You would find more information on the below VIDEO POST by Sachin Patney.
https://www.youtube.com/watch?v=_thcxwFmH9A
- Krunalbpatel9 years agoHelper III
Hi BhaveshPatel,
I see this video but I am not able understand properly. Is there any documentation available for basic codes?
- v-chuncz-msft9 years agoCommunity Support
Sample Bar Chart Repo could be the start point, and you'll need to learn TypeScript first. As for the error message, check Type assertions.