Creating Charts in Angular Using Chart JS

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

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

  • @YorukaValorant
    @YorukaValorant 3 ปีที่แล้ว +10

    6:24 - Everything after Installing Angular

  • @rrawat9026
    @rrawat9026 3 ปีที่แล้ว +10

    I used everything same as per ur video but in my app, it was showing only " Chart view works".. Chart is not visible..

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

      Was the chart visible later?

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

      Me too

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

      Me too

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

      Yes chart is not visible

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

      @@garimaverma_3952 import {registerables} from 'chart.js';
      Chart.register(...registerables);
      By adding this I was able to see chart.

  • @prajwalmakanwar6302
    @prajwalmakanwar6302 3 ปีที่แล้ว +4

    If you get this :
    Error: "linear" is not a registered scale.
    Do This :
    import { Chart, registerables } from 'chart.js';
    Chart.register(...registerables);

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

      I'm wondering why the instructor didn't get this error

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

      Thanks! i had this problem too

  • @alphapimousse
    @alphapimousse 4 ปีที่แล้ว +3

    Hi, shouldn't we create a new function inside our component.ts to put our chart in ? Because ngOnInit() runs code before the canvas get created no ? (im a beginner trying to understand)

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

    The visual studio code console stated that the error is Failed to create chart: can't acquite context from given time. How do I solve it ya?

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

    Thanks man i was searching for this for a lot of time and this helped me!!👌👌😊😊😁😁❤❤

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

    Exactly the thing I was looking for!! Muchas gracias

  • @bharatchaudhary2603
    @bharatchaudhary2603 3 ปีที่แล้ว +7

    I did same as u but getting an error of - Error: "linear" is not a registered scale.
    chart.js 3.2.0
    angular 11

    • @gabrielpadilla9707
      @gabrielpadilla9707 3 ปีที่แล้ว +10

      Solution:
      import { Chart, registerables } from 'chart.js';
      Chart.register(...registerables);

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

      @@gabrielpadilla9707 god

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

      Thanks guys, found the same error!

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

      @@gabrielpadilla9707 actually my chart itself was not visible in browser ..your code helped me...thanks so much

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

    Thank you sooo much. This was awesome!

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

    this code won't work now , so you need to add the registerable for it to work ,
    Chart.register(LinearScale);
    Chart.register(BarController);
    Chart.register(CategoryScale);
    Chart.register(BarElement);

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

    Hi how can we delete background check boxes

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

    Thank you very much brother... I really appreciate your hard work

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

    Can we print the UI screen according to the response we are getting . For example if response says to print pie chart then print PIE CHART in UI .. if table then table ?

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

      any idea for printing? i could not find anything

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

    Thank you very much for the video!

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

    Hello! thank you for this. Please create an ionic tutorial of chart.js but the data will be coming from sqlite.

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

      Noted.

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

      @@CodeRadiance subscribed! thank you so much!! i'd be looking forward to it.

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

    Very Good Explanation and can we create a dashboard using excel data as an input in Angular . Please make a video if possible.

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

      Maybe there is a library to import excel data. Rest is just business logic and UI controls for the dashboard.

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

    Thanks for uploading the video. please share link for chart code from angular site., or may be the code of final HTML edited in this tutorial.

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

    Thank you so much.

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

    Thanks for sharing. Could you please suggest how can I create only one stacked bar with 3 colours/values using Chart.js. Is it possible with Chart.js?

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

      I can only suggest to look into the documentation if it's supported.

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

      @@CodeRadiance Hi, it support by chart.js, I have developed it. Thank u for reply.

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

    You save me !, thanks

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

    Can you tell how to upload a excel sheet in angular and showing a graph for the values present in excel sheet???

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

      hey did you find the solution, i am also looking for the same

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

      Have you find it... please share it with also

  • @MahmoudMouradSidky
    @MahmoudMouradSidky 4 ปีที่แล้ว +11

    More than 60% of the video is teaching how to make a new angular app, create component, a lot of wasted time here

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

    Thank you so much 😊

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

    Module not found: Error: Can't resolve 'node_modules/chart.js'

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

      did you resolve the probleme ?

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

    Can you tell me..the link for code that you are copying

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

    Can you please please do this with an API?

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

    Thank u very much bro

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

    You are great..🤝 please upload more videos about type of charts and specially map concept I 'm waiting for your rpy also your next video

  • @RaviKumar-zi9ur
    @RaviKumar-zi9ur 3 ปีที่แล้ว

    Really superb

  • @testkarumurik408
    @testkarumurik408 5 ปีที่แล้ว

    nice ..please upload more videos..

  • @user-san-chous
    @user-san-chous 3 ปีที่แล้ว

    this is video about installing of angular...

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

    hi,
    how do we use onClick to get information from the chart ?
    thx

  • @ανάγκη-β5ω
    @ανάγκη-β5ω 3 ปีที่แล้ว

    thank you!

  • @ST-to2zv
    @ST-to2zv 2 ปีที่แล้ว

    Hi Nitij, I appreciate your work but have to provide you one comment. Please don't create videos where you simply copy pasting the code and show to users, this can be done by searching on google. Instead showcase or provide some real world project example with your own research. I hope you will take this comment positively and understand my point. Thanks

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

    doesnt work, dislike

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

    hey, how to fetch data from firebase and push it to chart?