Line Chart Integration | Line Chart Implementation in Laravel | Learning Points

Поделиться
HTML-код
  • Опубликовано: 28 сен 2024
  • Graphical representation of your data | How to integrate Line chart | Line chart integration with Laravel | Learning Points
    Store management system with chart
    Profit loss calculation using chart
    Store wise sales report
    Store wise expense report
    Graphical representation of all store status
    Link from Google : developers.goo...
    Please comment your feedback and support me by subscribing to this channel.
    Laravel 9 New upgrades : • Laravel 9 New Features...
    Laravel 9 Tutorial : • Laravel 9 Tutorial | C...
    Express JS Tutorial : • Express Js Tutorial | ...
    Full Node Js Tutorial : • Node JS latest version...
    Full JWT Authentication tutorial in Laravel 8 : • Laravel 8 REST API Usi...
    Full PHP tutorial : • PHP beginners to advan...
    Full ECMA Script Tutorial : • ES6 | ECMA SCRIPT Tuto...
    Laravel 8 tutorial : • Laravel 8 tutorial | L...
    Angular Tutorial : www.youtube.co...
    API tutorial with Laravel : • API tutorial from begi...
    Livewire Tutorial : www.youtube.co...
    Full Stack Application Tutorial : • Full Stack Application...
    Full Voyager admin panel tutorial: www.youtube.co...
    Advance PHP tutorial : • Advance PHP tutorial |...
    PHP Interview Questions Answers : www.youtube.co...
    Follow in Facebook : / learningpointsdotin
    Follow in Linkedin : / learning-points
    Follow in Instagram : / learning_points
    Visit Learning Points website for more topic : learning-points...

Комментарии • 17

  • @tiksong7613
    @tiksong7613 3 месяца назад +1

    Thank you so much for your tutorial.

  • @VipulPatel-mw4jj
    @VipulPatel-mw4jj 2 года назад +1

    very Good sir video working sir thank you sir

  • @vishalmohan1995
    @vishalmohan1995 2 года назад +1

    Good tutorial!. I need assistance in creating a similar hourly chart . Instead of year along 'x' axis , I need hours ('0', '1', '2', ......'24') along x axis and count (autoscale) along 'y' axis. I have an sql record with column 'count' with data '1' getting added in a new row with timestamp for every count of data. so under column 'count', the data is (1,1,1,1,1,1....) with corresponding timestamp. I need to retrieve the sum of all these counts and display the current day data in a hourly chart with hours along 'x' axis and count along 'y' axis. Can you share a query and if possible a chart for this use case?

  • @abdulbaqibasit2244
    @abdulbaqibasit2244 3 года назад

    send me this query

    • @LearningPointsCourses
      @LearningPointsCourses  3 года назад +1

      SELECT store_master.name,sum(sales_master.amount) as sales,sum(expense_master.amount) as expense,(sum(sales_master.amount)-sum(expense_master.amount)) as profit FROM `store_master` LEFT JOIN sales_master on sales_master.store_id = store_master.id LEFT JOIN expense_master on expense_master.store_id = store_master.id GROUP BY store_master.id

    • @abdulbaqibasit2244
      @abdulbaqibasit2244 3 года назад

      @@LearningPointsCourses sir error a rha aik .......
      SQLSTATE[42000]: Syntax error or access violation: 1055 'blog.store.name' isn't in GROUP BY (SQL: SELECT store.name,sum(sales.amount) as sales, sum(expense.amount) as expense,(sum(sales.amount)-sum(expense.amount)) as profit FROM `store` LEFT JOIN sales on sales.store_id= store.id LEFT JOIN expense on expense.store_id=store.id GROUP BY store.id)

    • @abdulbaqibasit2244
      @abdulbaqibasit2244 3 года назад

      SQL ma query theek run kr rhi hai

    • @LearningPointsCourses
      @LearningPointsCourses  3 года назад

      Video description box me facebook link diya hay.. message karo apka query

  • @febyrasyadazola1489
    @febyrasyadazola1489 2 года назад +2

    hello sir. I just follow your intruction. My database was exist in framework laravel , but when I run program to show up line chart, it nox available in framework. So in my framework just blank page.

    • @LearningPointsCourses
      @LearningPointsCourses  2 года назад +1

      No. It should work. May be you did some errors. Have you go any error or checked in console section?

  • @raymondfigoinuhan9504
    @raymondfigoinuhan9504 Год назад +1

    can you pls make a tutorials that show how to make full dashboard with many chart not only 1 page of chart this hard to make all chart in same view

  • @andresena777
    @andresena777 2 года назад +2

    I need to put the months of the year in my chart, but when I try to put the values in the array it returns me this: Data column(s) for axis #0 cannot be of type string×, can you help me? i use laravel 5.6 and php 7.4.19

    • @LearningPointsCourses
      @LearningPointsCourses  2 года назад +2

      No problem. It is not version related problem. Please print the data before passing into graph. If data is in proper format it will surely work.

    • @andresena777
      @andresena777 2 года назад

      @@LearningPointsCourses where exactly is this axis #0?

  • @HarshaBHerath
    @HarshaBHerath Год назад +1

    very helfull. Thanks 😍

  • @soufianch8481
    @soufianch8481 2 года назад

    please send me your code for chart plzzz