usefull video, for making pie charts etc, thanks sir, for efforts
@thaynacosta55243 жыл бұрын
series: apex.ApexAxisChartSeries; chart: apex.ApexChart; title: apex.ApexTitleSubtitle; not working this way here =(
@Lexp20083 жыл бұрын
If is not working because of the "Property 'series' has no initializer and is not definitely assigned in the constructor." error, you can fix it adding the ! postfix operator to the variable name. So you would end up with series!: ..., chart!: ... and title!: ...
@alokkarmarkar848110 ай бұрын
As I am importing in same way in app module I am getting error stating it does not appear to be an Mg module class. Can you help me out in this
@CarbonRiderOnline10 ай бұрын
Alok, I haven't tested with new Angular versions and hence its difficult to describe what could be causing the issue.
@alokkarmarkar84819 ай бұрын
@@CarbonRiderOnline finally solved the issue.. 👍🏻
@CarbonRiderOnline9 ай бұрын
@@alokkarmarkar8481 Thats really great 👏
@philiprodrigues28153 жыл бұрын
My friend, thank you very much for the link, I needed to call some color methods like the update for example, and it's in your description, for lack of attention I hadn't noticed, using viewChield we can
@yogeshkadu54532 жыл бұрын
Nice Explanation
@pratyushbhardwaj24603 жыл бұрын
excellent tutorial
@suuuuu063 жыл бұрын
Thanks bro it is very helpful for beginners
@madhavpalshikar94123 жыл бұрын
Good it was helpful!
@nurzarifah80653 жыл бұрын
Thank you!!!
@erenakgoz52012 жыл бұрын
When I press the home button, my data is lost, what is the reason?
@CarbonRiderOnline2 жыл бұрын
Home is actually meant for resetting zoom. Can you host your code on stackblitz or codesandbox?
@erenakgoz52012 жыл бұрын
@@CarbonRiderOnline Thanks I solved my problem but I have a new question. Is it possible to remove the padding and zoom buttons?
@CarbonRiderOnline2 жыл бұрын
You can definitely remove zoom option, refer this - apexcharts.com/docs/options/chart/zoom/ Not sure about padding though (or you may create CSS rule to override the default padding option).
@YashPatel-un9tj4 жыл бұрын
i want to pass lable value in apex radialbar chart from database using angular. can i do this? can you help me?
@CarbonRiderOnline4 жыл бұрын
I am working on additional videos on Apex Chart to feature more features. That may help you.
@ErJanardhanJethi4 жыл бұрын
@@CarbonRiderOnline I would like to learn the vertical and horizontal charts.
@NuevaHD4 жыл бұрын
ya mister show us the import of apex charts in TS u hide it bc its not same now changed import...told us
@CarbonRiderOnline4 жыл бұрын
Hi, You can find the complete example source code at following URL github.com/carbonrider/angular-examples/tree/main/apex-beginner
@viratpatil4 жыл бұрын
Nice
@pratikwebdeveloper78243 жыл бұрын
sir give your source code
@brijeshsalian16382 жыл бұрын
series: apex.ApexAxisChartSeries chart: apex.ApexChart Can you please tell me , what is apex? How to import apex?
@CarbonRiderOnline2 жыл бұрын
apex is an alias for default exports from Apex chart library. Refer below statement. import * as apex from 'ng-apexcharts';