Apex Chart with Angular

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ม.ค. 2025

ความคิดเห็น • 28

  • @ajinkyakundur8620
    @ajinkyakundur8620 ปีที่แล้ว +1

    usefull video, for making pie charts etc, thanks sir, for efforts

  • @suuuuu06
    @suuuuu06 3 ปีที่แล้ว +1

    Thanks bro it is very helpful for beginners

  • @philiprodrigues2815
    @philiprodrigues2815 3 ปีที่แล้ว +1

    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

  • @pratyushbhardwaj2460
    @pratyushbhardwaj2460 3 ปีที่แล้ว +2

    excellent tutorial

  • @jivtheshm.r1784
    @jivtheshm.r1784 3 ปีที่แล้ว +1

    Hey do u know how to add animation to it

  • @yogeshkadu5453
    @yogeshkadu5453 2 ปีที่แล้ว +1

    Nice Explanation

  • @alokkarmarkar8481
    @alokkarmarkar8481 11 หลายเดือนก่อน

    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

    • @CarbonRiderOnline
      @CarbonRiderOnline  11 หลายเดือนก่อน

      Alok, I haven't tested with new Angular versions and hence its difficult to describe what could be causing the issue.

    • @alokkarmarkar8481
      @alokkarmarkar8481 10 หลายเดือนก่อน +1

      @@CarbonRiderOnline finally solved the issue.. 👍🏻

    • @CarbonRiderOnline
      @CarbonRiderOnline  10 หลายเดือนก่อน

      @@alokkarmarkar8481 Thats really great 👏

  • @nurzarifah8065
    @nurzarifah8065 3 ปีที่แล้ว +1

    Thank you!!!

  • @madhavpalshikar9412
    @madhavpalshikar9412 3 ปีที่แล้ว +1

    Good it was helpful!

  • @thaynacosta5524
    @thaynacosta5524 3 ปีที่แล้ว +5

    series: apex.ApexAxisChartSeries;
    chart: apex.ApexChart;
    title: apex.ApexTitleSubtitle;
    not working this way here =(

    • @Lexp2008
      @Lexp2008 3 ปีที่แล้ว +1

      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!: ...

  • @NuevaHD
    @NuevaHD 4 ปีที่แล้ว +1

    ya mister show us the import of apex charts in TS u hide it bc its not same now changed import...told us

    • @CarbonRiderOnline
      @CarbonRiderOnline  4 ปีที่แล้ว +2

      Hi,
      You can find the complete example source code at following URL
      github.com/carbonrider/angular-examples/tree/main/apex-beginner

  • @YashPatel-un9tj
    @YashPatel-un9tj 4 ปีที่แล้ว

    i want to pass lable value in apex radialbar chart from database using angular. can i do this? can you help me?

    • @CarbonRiderOnline
      @CarbonRiderOnline  4 ปีที่แล้ว

      I am working on additional videos on Apex Chart to feature more features. That may help you.

    • @ErJanardhanJethi
      @ErJanardhanJethi 4 ปีที่แล้ว

      @@CarbonRiderOnline I would like to learn the vertical and horizontal charts.

  • @erenakgoz5201
    @erenakgoz5201 2 ปีที่แล้ว

    When I press the home button, my data is lost, what is the reason?

    • @CarbonRiderOnline
      @CarbonRiderOnline  2 ปีที่แล้ว

      Home is actually meant for resetting zoom. Can you host your code on stackblitz or codesandbox?

    • @erenakgoz5201
      @erenakgoz5201 2 ปีที่แล้ว

      @@CarbonRiderOnline Thanks I solved my problem but I have a new question. Is it possible to remove the padding and zoom buttons?

    • @CarbonRiderOnline
      @CarbonRiderOnline  2 ปีที่แล้ว

      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).

  • @viratpatil
    @viratpatil 4 ปีที่แล้ว +1

    Nice

  • @pratikwebdeveloper7824
    @pratikwebdeveloper7824 3 ปีที่แล้ว

    sir give your source code

  • @brijeshsalian1638
    @brijeshsalian1638 2 ปีที่แล้ว

    series: apex.ApexAxisChartSeries
    chart: apex.ApexChart
    Can you please tell me , what is apex?
    How to import apex?

    • @CarbonRiderOnline
      @CarbonRiderOnline  2 ปีที่แล้ว

      apex is an alias for default exports from Apex chart library. Refer below statement.
      import * as apex from 'ng-apexcharts';