const DemoApp = angular.module('DemoApp', ['dx']);
DemoApp.controller('DemoController', ($scope) => {
const options = {
startScaleValue: 0,
endScaleValue: 35,
tooltip: {
customizeTooltip(arg) {
return {
text: `Current t°: ${arg.value}°C<br>Average t°: ${arg.target}°C`,
};
},
},
};
$scope.june1 = $.extend({ value: 23, target: 20, color: '#ebdd8f' }, options);
$scope.july1 = $.extend({ value: 27, target: 24, color: '#e8c267' }, options);
$scope.august1 = $.extend({ value: 20, target: 26, color: '#e55253' }, options);
$scope.june2 = $.extend({ value: 24, target: 22, color: '#ebdd8f' }, options);
$scope.july2 = $.extend({ value: 28, target: 24, color: '#e8c267' }, options);
$scope.august2 = $.extend({ value: 30, target: 24, color: '#e55253' }, options);
$scope.june3 = $.extend({ value: 35, target: 24, color: '#ebdd8f' }, options);
$scope.july3 = $.extend({ value: 24, target: 26, color: '#e8c267' }, options);
$scope.august3 = $.extend({ value: 28, target: 22, color: '#e55253' }, options);
$scope.june4 = $.extend({ value: 29, target: 25, color: '#ebdd8f' }, options);
$scope.july4 = $.extend({ value: 24, target: 27, color: '#e8c267' }, options);
$scope.august4 = $.extend({ value: 21, target: 21, color: '#e55253' }, options);
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.1.5/css/dx.light.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script>
<script src="https://cdn3.devexpress.com/jslib/23.1.5/js/dx.all.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container" ng-app="DemoApp" ng-controller="DemoController">
<div class="long-title"><h3>Daily temperature</h3></div>
<div id="chart-demo">
<table class="demo-table">
<tr>
<th> </th>
<th>June</th>
<th>July</th>
<th>August</th>
</tr>
<tr>
<th>First week</th>
<td><div class="bullet" dx-bullet="june1"></div></td>
<td><div class="bullet" dx-bullet="july1"></div></td>
<td><div class="bullet" dx-bullet="august1"></div></td>
</tr>
<tr>
<th>Second week</th>
<td><div class="bullet" dx-bullet="june2"></div></td>
<td><div class="bullet" dx-bullet="july2"></div></td>
<td><div class="bullet" dx-bullet="august2"></div></td>
</tr>
<tr>
<th>Third week</th>
<td><div class="bullet" dx-bullet="june3"></div></td>
<td><div class="bullet" dx-bullet="july3"></div></td>
<td><div class="bullet" dx-bullet="august3"></div></td>
</tr>
<tr>
<th>Fourth week</th>
<td><div class="bullet" dx-bullet="june4"></div></td>
<td><div class="bullet" dx-bullet="july4"></div></td>
<td><div class="bullet" dx-bullet="august4"></div></td>
</tr>
</table>
</div>
</div>
</body>
</html>
#chart-demo {
height: 440px;
width: 100%;
}
.demo-table {
margin-top: 80px;
width: 100%;
border: 1px solid #c2c2c2;
border-collapse: collapse;
}
.demo-table th,
.demo-table td {
font-weight: 400;
width: 200px;
padding: 25px 10px 5px 10px;
border: 1px solid #e5e5e5;
}
.demo-table th {
padding: 25px 15px 20px 15px;
border: 1px solid #c2c2c2;
}
.demo-table tr:nth-child(2) td {
border-top: 1px solid #c2c2c2;
}
.demo-table td:first-of-type {
border-left: 1px solid #c2c2c2;
}
.demo-table .bullet {
width: 200px;
height: 30px;
}
.long-title h3 {
font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', Verdana;
font-weight: 200;
font-size: 28px;
text-align: center;
margin-bottom: 20px;
}