Published on

Ultimate Guide: Build A Sales Chart With Tailwind CSS

Sales Chart

What is Tailwind CSS?

Tailwind CSS is a utility-first CSS framework that focuses on creating personalized user interfaces quickly. It can gives you all the building blocks you are able to create personalized designs without having to fight to override irritating opinionated styles. Also, Tailwind CSS is a highly configurable, low-level CSS framework.

The description of Sales Chart ui component

Chart with total sales

Why use Tailwind CSS to make a Sales Chart ui component?

  • It can make the building process of Sales Chart ui component faster and more easily.
  • Enables building complex responsive layouts and components freely.
  • Minimum lines of CSS code in Sales Chart component file.

The preview of Sales Chart ui component

Free download of the Sales Chart's source code

The source code of Sales Chart ui component

<link rel="stylesheet" href="https://demos.creative-tim.com/notus-js/assets/styles/tailwind.css">
<link rel="stylesheet" href="https://demos.creative-tim.com/notus-js/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css">
<script src=" https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js"> </script>

<section class="pt-16 bg-blueGray-50">
  <div class="w-full xl:w-8/12 xl:mb-0 px-4 mx-auto mt-6">
    <div class="relative flex flex-col min-w-0 break-words w-full mb-6 shadow-lg rounded bg-blueGray-700">
      <div class="rounded-t mb-0 px-4 py-3 bg-transparent">
        <div class="flex flex-wrap items-center">
          <div class="relative w-full max-w-full flex-grow flex-1">
            <h6 class="uppercase text-blueGray-100 mb-1 text-xs font-semibold">
              Overview
            </h6>
            <h2 class="text-blueGray-100 text-xs font-semibold">
              Sales value
            </h2>
          </div>
        </div>
      </div>
      <div class="p-4 flex-auto">
        <!-- Chart -->
        <div class="relative h-350-px">
          <div class="chartjs-size-monitor">
            <div class="chartjs-size-monitor-expand">
              <div class=""></div>
            </div>
            <div class="chartjs-size-monitor-shrink">
              <div class=""></div>
            </div>
          </div>
          <canvas id="line-chart" style="display: block; height: 350px; width: 791px;" width="1582" height="700" class="chartjs-render-monitor"></canvas>
        </div>
      </div>
    </div>
      <footer class="relative bg-blueGray-50 pt-8 pb-6 mt-1">
  <div class="container mx-auto px-4">
    <div class="flex flex-wrap items-center md:justify-between justify-center">
      <div class="w-full md:w-6/12 px-4 mx-auto text-center">
        <div class="text-sm text-blueGray-500 font-semibold py-1">
          Made with <a href="https://www.creative-tim.com/product/notus-js" class="text-blueGray-500 hover:text-gray-800" target="_blank">Notus JS</a> by <a href="https://www.creative-tim.com" class="text-blueGray-500 hover:text-blueGray-800" target="_blank"> Creative Tim</a>.
        </div>
      </div>
    </div>
  </div>
</footer>
  </div>
</section>

<script>
var config = {
          type: "line",
          data: {
            labels: [
              "January",
              "February",
              "March",
              "April",
              "May",
              "June",
              "July",
            ],
            datasets: [
              {
                label: new Date().getFullYear(),
                backgroundColor: "#4c51bf",
                borderColor: "#4c51bf",
                data: [65, 78, 66, 44, 56, 67, 75],
                fill: false,
              },
              {
                label: new Date().getFullYear() - 1,
                fill: false,
                backgroundColor: "#fff",
                borderColor: "#fff",
                data: [40, 68, 86, 74, 56, 60, 87],
              },
            ],
          },
          options: {
            maintainAspectRatio: false,
            responsive: true,
            title: {
              display: false,
              text: "Sales Charts",
              fontColor: "white",
            },
            legend: {
              labels: {
                fontColor: "white",
              },
              align: "end",
              position: "bottom",
            },
            tooltips: {
              mode: "index",
              intersect: false,
            },
            hover: {
              mode: "nearest",
              intersect: true,
            },
            scales: {
              xAxes: [
                {
                  ticks: {
                    fontColor: "rgba(255,255,255,.7)",
                  },
                  display: true,
                  scaleLabel: {
                    display: false,
                    labelString: "Month",
                    fontColor: "white",
                  },
                  gridLines: {
                    display: false,
                    borderDash: [2],
                    borderDashOffset: [2],
                    color: "rgba(33, 37, 41, 0.3)",
                    zeroLineColor: "rgba(0, 0, 0, 0)",
                    zeroLineBorderDash: [2],
                    zeroLineBorderDashOffset: [2],
                  },
                },
              ],
              yAxes: [
                {
                  ticks: {
                    fontColor: "rgba(255,255,255,.7)",
                  },
                  display: true,
                  scaleLabel: {
                    display: false,
                    labelString: "Value",
                    fontColor: "white",
                  },
                  gridLines: {
                    borderDash: [3],
                    borderDashOffset: [3],
                    drawBorder: false,
                    color: "rgba(255, 255, 255, 0.15)",
                    zeroLineColor: "rgba(33, 37, 41, 0)",
                    zeroLineBorderDash: [2],
                    zeroLineBorderDashOffset: [2],
                  },
                },
              ],
            },
          },
        };
        var ctx = document.getElementById("line-chart").getContext("2d");
        window.myLine = new Chart(ctx, config);
    
    </script>

How to make a Sales Chart with Tailwind CSS?

Install tailwind css of verion 2.2.4

Use the script html tag to import the script of Tailwind CSS of the version 2.2.4

<script src="https://cdn.tailwindcss.com"></script>

All the unility class needed to make a Sales Chart component

  • pt-16
  • bg-blueGray-50
  • w-full
  • xl:w-8/12
  • xl:mb-0
  • px-4
  • mx-auto
  • mt-6
  • relative
  • flex
  • flex-col
  • min-w-0
  • mb-6
  • bg-blueGray-700
  • mb-0
  • py-3
  • bg-transparent
  • flex-wrap
  • max-w-full
  • flex-grow
  • flex-1
  • text-blueGray-100
  • mb-1
  • text-xs
  • p-4
  • flex-auto
  • h-350-px
  • pt-8
  • pb-6
  • mt-1
  • md:w-6/12
  • text-center
  • text-sm
  • text-blueGray-500
  • py-1
  • hover:text-gray-800
  • hover:text-blueGray-800

37 steps to make a Sales Chart component with Tailwind CSS

  1. Control the padding on top side of an element to 4rem using the pt-16 utilities.

  2. Control the background color of an element to blueGray-50 using the bg-blueGray-50 utilities.

  3. Use w-full to set an element to a 100% based width.

  4. Use xl:w-8/12 to set an element to a fixed width(8/12) at only extremely large screen sizes.

  5. Control the margin on bottom side of an element to 0rem at only extremely large screen sizes using the xl:mb-0 utilities.

  6. Control the horizontal padding of an element to 1rem using the px-4 utilities.

  7. Control the horizontal margin of an element to auto using the mx-auto utilities.

  8. Control the margin on top side of an element to 1.5rem using the mt-6 utilities.

  9. Use relative to position an element according to the normal flow of the document.

  10. Use flex to create a block-level flex container.

  11. Use flex to create a block-level flex container.

  12. Set the minimum width/height of an element using the min-w-0 utilities.

  13. Control the margin on bottom side of an element to 1.5rem using the mb-6 utilities.

  14. Control the background color of an element to blueGray-700 using the bg-blueGray-700 utilities.

  15. Control the margin on bottom side of an element to 0rem using the mb-0 utilities.

  16. Control the vertical padding of an element to 0.75rem using the py-3 utilities.

  17. Control the background color of an element to transparent using the bg-transparent utilities.

  18. Use flex to create a block-level flex container.

  19. Set the maximum width/height of an element using the max-w-full utilities.

  20. Use flex to create a block-level flex container.

  21. Use flex to create a block-level flex container.

  22. Control the text color of an element to blueGray-100 using the text-blueGray-100 utilities.

  23. Control the margin on bottom side of an element to 0.25rem using the mb-1 utilities.

  24. Control the text color of an element to xs using the text-xs utilities.

  25. Control the padding on all sides of an element to 1rem using the p-4 utilities.

  26. Use flex to create a block-level flex container.

  27. Use h-350-px to set an element to a fixed height(350-px).

  28. Control the padding on top side of an element to 2rem using the pt-8 utilities.

  29. Control the padding on bottom side of an element to 1.5rem using the pb-6 utilities.

  30. Control the margin on top side of an element to 0.25rem using the mt-1 utilities.

  31. Use md:w-6/12 to set an element to a fixed width(6/12) at only medium screen sizes.

  32. Control the text color of an element to center using the text-center utilities.

  33. Control the text color of an element to sm using the text-sm utilities.

  34. Control the text color of an element to blueGray-500 using the text-blueGray-500 utilities.

  35. Control the vertical padding of an element to 0.25rem using the py-1 utilities.

  36. Control the text color of an element to gray-800 on hover using the hover:text-gray-800 utilities.

  37. Control the text color of an element to blueGray-800 on hover using the hover:text-blueGray-800 utilities.

Conclusion

The above is a step-by-step tutorial on how to use Tailwind CSS to make a Sales Chart components, learn and follow along to implement your own components.