Time Chart - minimized, no labels, no axis, round theme
Yahoo stock prices 1996 - 2014
HTML
HTML
<script src="https://cdn.zoomcharts-cloud.com/1/nightly/zoomcharts.js"></script>
<div id="blank" style="height: 60px"></div>
<div id="demo"></div>
CSS
CSS
//No CSS for this example
JavaScript
JavaScript
function success(data) {
data.dataLimitFrom = Infinity;
data.dataLimitTo = -Infinity;
for (var i in data.values) {
data.dataLimitFrom = Math.min(data.dataLimitFrom, data.values[i][0]);
data.dataLimitTo = Math.max(data.dataLimitTo, data.values[i][0] + 1);
}
t = new TimeChart({
theme: TimeChart.themes.round,
container: document.getElementById("demo"),
data:
{
units: ["d"],
preloaded: data
},
valueAxisDefault: { enabled: false },
toolbar: { enabled: false },
area: {
width: 200,
height: 50,
minHeight: 50
},
series: [
{
name: "High",
id: "series1",
type: "line",
data: {
index: 2,
aggregation: "avg"
},
style: {
lineColor: "green",
lineWidth: 1
}
},
{
name: "Low",
id: "series2",
type: "line",
data: {
index: 3,
aggregation: "max"
},
style: {
lineColor: "red",
lineWidth: 1
}
}
],
navigation: {
initialDisplayUnit: "1 d",
initialDisplayPeriod: "max",
initialDisplayAnchor: "newestData"
},
currentTime: { enabled: false },
timeAxis: {
enabled: false,
minUnitWidth: 0
},
interaction: { resizing: { enabled: false } },
info: { position: "outside" }
});
}
// using a custom library to load CSV data
loadCSV("/dvsl/data/time-chart/yahoo-stocks.csv", "d", [
{ type: "date", format: "([0-9]+)\/([0-9]+)\/([0-9]+)", fields: [3, 1, 2] },
{ type: "decimal" },
{ type: "decimal" },
{ type: "decimal" },
{ type: "decimal" },
{ type: "decimal" }
], ",", success);