- Open the https://js.devexpress.com/Demos/WidgetsGallery/Demo/Charts/RangeArea/jQuery/Light/ demo.
- Modify the data source as follows:
JavaScriptvar dataSource = [{
date: new Date(2010, 0, 1),
val2010: 1.63,
val2011: 1.63
}, {
date: new Date(2010, 1, 1),
val2010: 2.11,
val2011: 2.11
}, {
date: new Date(2010, 2, 1),
val2010: 2.68,
val2011: 2.68
}];
- Enable displaying point markers:
JavaScriptcommonSeriesSettings: {
type: "rangeArea",
argumentField: "date",
point : { visible : true },
},
- See that points are not connected by line.