<template>
<div>
<h3 class="long-title">Monthly Prices of Aluminium, Nickel and Copper</h3>
<div id="chart-demo">
<table
class="demo-table"
border="1"
>
<tr>
<th/>
<th>Aluminium (USD/ton)</th>
<th>Nickel (USD/ton)</th>
<th>Copper (USD/ton)</th>
</tr>
<tbody
v-for="(year, index) in years"
:key="index"
>
<RowTemplate
:source="source"
:year="year"
/>
</tbody>
</table>
<div class="action">
<DxSelectBox
id="choose-months"
:data-source="months"
:width="70"
:value="months[0]"
@value-changed="onValueChanged"
/>
<div class="label">Choose a number of months:
</div>
</div>
</div>
</div>
</template>
<script>
import DxSelectBox from 'devextreme-vue/select-box';
import DataSource from 'devextreme/data/data_source';
import CustomStore from 'devextreme/data/custom_store';
import RowTemplate from './RowTemplate.vue';
const source = new DataSource({
store: new CustomStore({
load: () => {
return fetch('../../../../data/resourceData.json')
.then(e => e.json())
.catch(() => { throw 'Data Loading Error'; });
},
loadMode: 'raw'
}),
filter: ['month', '<=', '12'],
paginate: false
});
export default {
components: {
RowTemplate,
DxSelectBox
},
data() {
return {
months: [12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1],
years: ['2010', '2011', '2012'],
source
};
},
methods:{
onValueChanged(e) {
this.source.filter(['month', '<=', e.value]);
this.source.load();
}
}
};
</script>
<style>
#chart-demo {
height: 440px;
}
.demo-table {
width: 100%;
border: 1px solid #c2c2c2;
border-collapse: collapse;
}
.demo-table th {
font-weight: 400;
width: 200px;
padding: 25px 10px 5px 10px;
border: 1px solid #c2c2c2;
padding: 25px 15px 20px 15px;
border: 1px solid #c2c2c2;
}
#choose-months {
float: right;
}
.action {
width: 270px;
margin-top: 20px;
}
.label {
padding-top: 9px;
}
h3.long-title {
font-weight: 200;
font-size: 28px;
text-align: center;
margin-bottom: 20px;
margin-top: 0px;
}
</style>
<template>
<tr class="rows-content">
<th>{{ year }}</th>
<td>
<DxSparkline
:data-source="source"
:show-min-max="true"
:value-field="getValueField('alum')"
class="sparkline"
argument-field="month"
type="bar"
>
<DxTooltip format="currency"/>
</DxSparkline>
</td>
<td>
<DxSparkline
:data-source="source"
:show-min-max="true"
:show-first-last="false"
:value-field="getValueField('nickel')"
class="sparkline"
argument-field="month"
type="bar"
bar-positive-color="#6babac"
min-color="#9ab57e"
max-color="#8076bb"
>
<DxTooltip format="currency"/>
</DxSparkline>
</td>
<td>
<DxSparkline
:data-source="source"
:value-field="getValueField('copper')"
class="sparkline"
argument-field="month"
type="bar"
bar-positive-color="#e55253"
first-last-color="#ebdd8f"
point-color="#e8c267"
>
<DxTooltip format="currency"/>
</DxSparkline>
</td>
</tr>
</template>
<script>
import DxSparkline, {
DxTooltip,
} from 'devextreme-vue/sparkline';
export default {
components: {
DxSparkline,
DxTooltip
},
props: {
year:{
type: String,
default() {}
},
source: {
type: Object,
default() {}
}
},
methods:{
getValueField(name) {
return name + this.year;
}
}
};
</script>
<style>
.rows-content td {
font-weight: 400;
width: 200px;
padding: 25px 10px 5px 10px;
border: 1px solid #c2c2c2;
}
.rows-content tr:nth-child(2) td {
border-top: 1px solid #c2c2c2;
}
.rows-content td:first-of-type {
border-left: 1px solid #c2c2c2;
}
.rows-content .sparkline {
width: 200px;
height: 30px;
}
</style>
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#app');
<!DOCTYPE html>
<html>
<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" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.light.css" />
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<script src="https://unpkg.com/systemjs@0.21.3/dist/system.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript">
System.import('./index.js');
</script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="app">
</div>
</div>
</body>
</html>
System.config({
transpiler: 'plugin-babel',
meta: {
'*.vue': {
loader: 'vue-loader'
},
'devextreme/localization.js': {
"esModule": true
},
},
paths: {
'npm:': 'https://unpkg.com/'
},
map: {
'vue': 'npm:vue@3.0.0/dist/vue.esm-browser.js',
'vue-loader': 'npm:dx-systemjs-vue-browser@1.0.15/index.js',
'mitt': 'npm:mitt/dist/mitt.umd.js',
'rrule': 'npm:rrule@2.6.6/dist/es5/rrule.js',
'luxon': 'npm:luxon@1.25.0/build/global/luxon.min.js',
'es6-object-assign': 'npm:es6-object-assign@1.1.0',
'devextreme': 'npm:devextreme@20.2.5',
'devextreme-vue': 'npm:devextreme-vue@20.2.5',
'jszip': 'npm:jszip@3.5.0/dist/jszip.min.js',
'devextreme-quill': 'npm:devextreme-quill@0.9.8/dist/dx-quill.min.js',
'devexpress-diagram': 'npm:devexpress-diagram@2.0.11/dist/dx-diagram.js',
'devexpress-gantt': 'npm:devexpress-gantt@2.0.18/dist/dx-gantt.js',
'preact': 'npm:preact@10.5.11/dist/preact.js',
'preact/hooks': 'npm:preact@10.5.11/hooks/dist/hooks.js',
'plugin-babel': 'npm:systemjs-plugin-babel@0.0.25/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel@0.0.25/systemjs-babel-browser.js'
},
packages: {
'devextreme-vue': {
main: 'index.js'
},
'devextreme': {
defaultExtension: 'js'
},
'devextreme/events/utils': {
main: 'index'
},
'devextreme/events': {
main: 'index'
},
'es6-object-assign': {
main: './index.js',
defaultExtension: 'js'
}
},
babelOptions: {
sourceMaps: false,
stage0: true
}
});