Time With Your Phone

HTMLHTMLBeginner
Practice Now

Introduction

In this project, you will learn how to create a line chart using the ECharts library. The chart will display the number of hours the user spends on their phone each day of the week.

👀 Preview

finished

🎯 Tasks

In this project, you will learn:

  • How to set up the project and open the necessary files
  • How to fix an error in the ECharts configuration
  • How to understand the configuration of the line chart
  • How to customize the chart by modifying the configuration

🏆 Achievements

After completing this project, you will be able to:

  • Use the ECharts library to create a line chart
  • Configure the chart's title, axes, and data series
  • Customize the chart by modifying the configuration

Skills Graph

%%%%{init: {'theme':'neutral'}}%%%% flowchart RL html(("`HTML`")) -.-> html/BasicStructureGroup(["`Basic Structure`"]) javascript(("`JavaScript`")) -.-> javascript/AdvancedConceptsGroup(["`Advanced Concepts`"]) html/BasicStructureGroup -.-> html/viewport("`Viewport Declaration`") javascript/AdvancedConceptsGroup -.-> javascript/es6("`ES6 Features`") subgraph Lab Skills html/viewport -.-> lab-300335{{"`Time With Your Phone`"}} javascript/es6 -.-> lab-300335{{"`Time With Your Phone`"}} end

Set Up the Project

In this step, you will set up the project and open the files in the editor.

  1. Open the editor on the right. You should see two files — index.html and echarts.js.
  2. Click on Go Live button in the bottom right corner of WebIDE, to run the project.
  3. Open "Web 8080" on the top of the VM and manually refresh it to see the page.
unfinished

Fix the Error in the index.html File

In this step, you will fix the error in the index.html file.

  1. Locate the var option = {} section in the index.html file.
  2. There is a bug in the configuration item that causes the axes to be displayed incorrectly.
  3. Update the option object to the following:
var option = {
  title: {
    text: "Hours spent using mobile phones"
  },
  xAxis: {
    type: "category",
    data: [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday",
      "Sunday"
    ]
  },
  yAxis: {
    type: "value"
  },
  series: [
    {
      data: [2.5, 2, 2.6, 3.2, 4, 6, 5],
      type: "line"
    }
  ]
};
  1. Understand the code above:
  • The title property sets the title of the line chart.
  • The xAxis property configures the x-axis, which is set to "category" type and displays the days of the week.
  • The yAxis property configures the y-axis, which is set to "value" type.
  • The series property is the series where data is the time data for each day of the week that the phone is used, and type is the type of chart as a line chart.
  1. Save the file and reload the page to see the updated chart. The finished result is as follows:
finished

Summary

Congratulations! You have completed this project. You can practice more labs in LabEx to improve your skills.

Other HTML Tutorials you may like