<template>
<dx-chart
id="chart"
:data-source="dataSource"
:rotated="true"
:bar-group-padding="0.2"
>
<dx-argument-axis :categories="categories">
<dx-tick :visible="false"/>
</dx-argument-axis>
<dx-title
text="The British Monarchy"
subtitle="An Abbreviated Timeline"
/>
<dx-common-series-settings
argument-field="monarch"
type="rangebar"
range-value1-field="start"
range-value2-field="end"
bar-overlap-group="monarchs"
/>
<dx-series-template name-field="house"/>
<dx-animation :enabled="false"/>
<dx-legend
vertical-alignment="bottom"
horizontal-alignment="center"
>
<dx-title text="Royal Houses"/>
</dx-legend>
</dx-chart>
</template>
<script>
import {
DxChart,
DxCommonSeriesSettings,
DxArgumentAxis,
DxAnimation,
DxTick,
DxSeriesTemplate,
DxLegend,
DxTitle
} from 'devextreme-vue/chart';
import dataSource from './data.js';
export default {
components: {
DxChart,
DxCommonSeriesSettings,
DxArgumentAxis,
DxAnimation,
DxSeriesTemplate,
DxLegend,
DxTitle,
DxTick,
},
data() {
return {
dataSource,
categories: ['Royal Houses']
};
}
};
</script>
<style>
#chart {
height: 440px;
}
</style>
import Vue from 'vue';
import App from './App.vue';
new Vue({
el: '#app',
components: { App },
template: '<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/19.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/19.2.4/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>
export default [
{
monarch: 'Anne',
start: new Date(1701, 4, 1),
end: new Date(1714, 7, 1),
house: 'Stuart'
},
{
monarch: 'George I',
start: new Date(1714, 7, 1),
house: 'Hanover',
end: new Date(1727, 5, 11)
},
{
monarch: 'George II',
start: new Date(1727, 5, 11),
house: 'Hanover',
end: new Date(1760, 9, 25)
},
{
monarch: 'George III',
start: new Date(1760, 9, 25),
house: 'Hanover',
end: new Date(1820, 0, 29)
},
{
monarch: 'George IV',
start: new Date(1820, 0, 29),
house: 'Hanover',
end: new Date(1830, 5, 26)
},
{
monarch: 'William IV',
start: new Date(1830, 5, 26),
house: 'Hanover',
end: new Date(1837, 5, 20)
},
{
monarch: 'Victoria',
start: new Date(1837, 5, 20),
end: new Date(1901, 0, 22),
house: 'Hanover'
},
{
monarch: 'Edward VII',
start: new Date(1901, 0, 22),
house: 'Saxe-Coburg and Gotha',
end: new Date(1910, 4, 6)
},
{
monarch: 'George V',
start: new Date(1910, 4, 6),
house: 'Saxe-Coburg and Gotha',
end: new Date(1917, 5, 17)
},
{
monarch: 'George V',
start: new Date(1917, 5, 17),
house: 'Windsor',
end: new Date(1936, 0, 20)
},
{
monarch: 'Edward VIII',
start: new Date(1936, 0, 20),
house: 'Windsor',
end: new Date(1936, 11, 11)
},
{
monarch: 'George VI',
start: new Date(1936, 11, 11),
house: 'Windsor',
end: new Date(1952, 1, 6)
},
{
monarch: 'Elizabeth II',
house: 'Windsor',
start: new Date(1952, 1, 6),
end: new Date()
},
{
house: 'Stuart',
start: new Date(1701, 4, 1),
end: new Date(1714, 7, 1),
monarch: 'Royal Houses'
},
{
end: new Date(1901, 0, 22),
house: 'Hanover',
start: new Date(1714, 7, 1),
monarch: 'Royal Houses'
},
{
start: new Date(1901, 0, 22),
end: new Date(1917, 5, 17),
house: 'Saxe-Coburg and Gotha',
monarch: 'Royal Houses'
},
{
house: 'Windsor',
start: new Date(1917, 5, 17),
end: new Date(),
monarch: 'Royal Houses'
}
];
System.config({
transpiler: 'plugin-babel',
paths: {
'npm:': 'https://unpkg.com/'
},
map: {
vue: 'npm:vue@2.6.3/dist/vue.esm.browser.js',
'vue-loader': 'npm:dx-systemjs-vue-browser@latest/index.js',
'devextreme': 'npm:devextreme@19.2',
'devextreme-vue': 'npm:devextreme-vue@19.2',
'devexpress-diagram': 'npm:devexpress-diagram',
'devexpress-gantt': 'npm:devexpress-gantt',
jszip: 'npm:jszip@3.1.3/dist/jszip.min.js',
'quill': 'npm:quill@1.3.7/dist/quill.js',
'plugin-babel': 'npm:systemjs-plugin-babel@0/plugin-babel.js',
'systemjs-babel-build':
'npm:systemjs-plugin-babel@0/systemjs-babel-browser.js'
},
meta: {
'*.vue': { loader: 'vue-loader' }
},
packages: {
'devextreme-vue': {
main: 'index.js'
},
'devextreme': {
defaultExtension: 'js'
}
},
babelOptions: {
sourceMaps: false,
stage0: true
}
});