mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-02-15 08:48:42 +00:00
Prepare for more charts
This commit is contained in:
parent
53f6387d89
commit
2b3b74813e
|
|
@ -0,0 +1,283 @@
|
||||||
|
(function (jsOMS, undefined)
|
||||||
|
{
|
||||||
|
jsOMS.Chart.BarChart = function (id)
|
||||||
|
{
|
||||||
|
this.chart = new jsOMS.Chart(id);
|
||||||
|
|
||||||
|
// Setting default chart values
|
||||||
|
this.chart.margin = {top: 5, right: 0, bottom: 0, left: 0};
|
||||||
|
this.chart.color = d3.scale.ordinal().
|
||||||
|
range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]);
|
||||||
|
|
||||||
|
this.chart.axis = {
|
||||||
|
x1: {
|
||||||
|
visible: true,
|
||||||
|
label: {
|
||||||
|
visible: true,
|
||||||
|
text: 'X-Axis',
|
||||||
|
position: "center",
|
||||||
|
anchor: 'middle'
|
||||||
|
},
|
||||||
|
tick: {
|
||||||
|
prefix: '',
|
||||||
|
orientation: 'bottom',
|
||||||
|
size: 7
|
||||||
|
},
|
||||||
|
min: 0,
|
||||||
|
max: 0
|
||||||
|
},
|
||||||
|
y1: {
|
||||||
|
visible: true,
|
||||||
|
label: {
|
||||||
|
visible: true,
|
||||||
|
text: 'Y-Axis',
|
||||||
|
position: 'center',
|
||||||
|
anchor: 'middle'
|
||||||
|
},
|
||||||
|
tick: {
|
||||||
|
prefix: '',
|
||||||
|
orientation: 'bottom',
|
||||||
|
size: 7
|
||||||
|
},
|
||||||
|
min: 0,
|
||||||
|
max: 0
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.chart.grid = {
|
||||||
|
x: {
|
||||||
|
visible: true
|
||||||
|
},
|
||||||
|
y: {
|
||||||
|
visible: true
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
jsOMS.Chart.BarChart.prototype.getChart = function ()
|
||||||
|
{
|
||||||
|
return this.chart;
|
||||||
|
};
|
||||||
|
|
||||||
|
jsOMS.Chart.BarChart.prototype.draw = function ()
|
||||||
|
{
|
||||||
|
var line, svg, x, xAxis1, xAxis2, y, yAxis1, yAxis2, xGrid, yGrid, zoom, self = this, box = this.chart.chartSelect.node().getBoundingClientRect();
|
||||||
|
|
||||||
|
this.chart.dimension = {
|
||||||
|
width: box.width,
|
||||||
|
height: box.height
|
||||||
|
};
|
||||||
|
|
||||||
|
x = d3.scale.linear().range([
|
||||||
|
0,
|
||||||
|
this.chart.dimension.width
|
||||||
|
- this.chart.margin.right
|
||||||
|
- this.chart.margin.left
|
||||||
|
]);
|
||||||
|
|
||||||
|
y = d3.scale.linear().range([
|
||||||
|
this.chart.dimension.height
|
||||||
|
- this.chart.margin.top
|
||||||
|
- this.chart.margin.bottom,
|
||||||
|
10
|
||||||
|
]);
|
||||||
|
|
||||||
|
// axis
|
||||||
|
xAxis1 = d3.svg.axis().scale(x).tickFormat(function (d)
|
||||||
|
{
|
||||||
|
return self.chart.axis.x1.tick.prefix + d;
|
||||||
|
}).orient("bottom").outerTickSize(this.chart.axis.x1.tick.size).innerTickSize(this.chart.axis.x1.tick.size).tickPadding(7);
|
||||||
|
|
||||||
|
yAxis1 = d3.svg.axis().scale(y).tickFormat(function (d)
|
||||||
|
{
|
||||||
|
return self.chart.axis.y1.tick.prefix + d;
|
||||||
|
}).orient("left").outerTickSize(this.chart.axis.y1.tick.size).innerTickSize(this.chart.axis.y1.tick.size).tickPadding(7);
|
||||||
|
|
||||||
|
xGrid = d3.svg.axis()
|
||||||
|
.scale(x)
|
||||||
|
.orient("bottom")
|
||||||
|
//.ticks(0)
|
||||||
|
.tickSize(
|
||||||
|
-(this.chart.dimension.height
|
||||||
|
- this.chart.margin.top - 10
|
||||||
|
- this.chart.margin.bottom), 0, 0)
|
||||||
|
.tickFormat("");
|
||||||
|
|
||||||
|
yGrid = d3.svg.axis()
|
||||||
|
.scale(y)
|
||||||
|
.orient("left")
|
||||||
|
//.ticks(0)
|
||||||
|
.tickSize(
|
||||||
|
-this.chart.dimension.width
|
||||||
|
+ this.chart.margin.right
|
||||||
|
+ this.chart.margin.left, 0, 0)
|
||||||
|
.tickFormat("");
|
||||||
|
|
||||||
|
x.domain([this.chart.axis.x1.min, this.chart.axis.x1.max + 1]);
|
||||||
|
y.domain([this.chart.axis.y1.min - 1, this.chart.axis.y1.max + 1]);
|
||||||
|
|
||||||
|
line = d3.svg.line().interpolate(this.chart.dataSettings.interpolate).x(function (d)
|
||||||
|
{
|
||||||
|
return x(d.x1);
|
||||||
|
}).y(function (d)
|
||||||
|
{
|
||||||
|
return y(d.y1);
|
||||||
|
});
|
||||||
|
|
||||||
|
zoom = d3.behavior.zoom().x(x).scaleExtent([1, 2]).on('zoom', function ()
|
||||||
|
{
|
||||||
|
var tx, ty;
|
||||||
|
tx = d3.event.translate[0];
|
||||||
|
ty = d3.event.translate[1];
|
||||||
|
tx = Math.min(1,
|
||||||
|
Math.max(tx,
|
||||||
|
self.chart.dimension.width
|
||||||
|
- self.chart.margin.right
|
||||||
|
- self.chart.margin.left
|
||||||
|
- Math.round(x(self.chart.axis.y1.max) - x(1)),
|
||||||
|
self.chart.dimension.width
|
||||||
|
- self.chart.margin.right
|
||||||
|
- self.chart.margin.left
|
||||||
|
- Math.round(x(self.chart.axis.y1.max) - x(1)) * d3.event.scale));
|
||||||
|
|
||||||
|
zoom.translate([tx, ty]);
|
||||||
|
svg.select('.x.axis').call(xAxis1);
|
||||||
|
svg.select('.x.grid').call(xGrid);
|
||||||
|
svg.selectAll('.line').attr("d", function (d)
|
||||||
|
{
|
||||||
|
return line(d.points);
|
||||||
|
}).style("stroke", function (d)
|
||||||
|
{
|
||||||
|
return self.chart.color(d.name);
|
||||||
|
});
|
||||||
|
return svg.selectAll('circle.dot').attr('cy', function (d)
|
||||||
|
{
|
||||||
|
return y(d.y1);
|
||||||
|
}).attr('cx', function (d)
|
||||||
|
{
|
||||||
|
return x(d.x1);
|
||||||
|
}).attr('r', 4);
|
||||||
|
});
|
||||||
|
|
||||||
|
svg = this.chart.chartSelect.append("svg")
|
||||||
|
.attr("width", this.chart.dimension.width)
|
||||||
|
.attr("height", this.chart.dimension.height)
|
||||||
|
.append("g").attr("transform", "translate("
|
||||||
|
+ (this.chart.margin.left) + ","
|
||||||
|
+ (this.chart.margin.top) + ")");
|
||||||
|
|
||||||
|
this.chart.drawGrid(svg, xGrid, yGrid);
|
||||||
|
this.drawZoomPanel(svg, zoom);
|
||||||
|
|
||||||
|
zoom.scaleExtent([1, Number.MAX_VALUE]);
|
||||||
|
//svg.selectAll('.x.grid').transition().duration(500).call(xGrid);
|
||||||
|
//svg.selectAll('.x.axis').transition().duration(500).call(xAxis1);
|
||||||
|
//svg.selectAll('.y.axis').transition().duration(500).call(yAxis1);
|
||||||
|
|
||||||
|
var dataPoint, dataPointEnter;
|
||||||
|
var temp = this.drawData(svg, line, dataPointEnter, dataPoint);
|
||||||
|
dataPointEnter = temp[0];
|
||||||
|
dataPoint = temp[1];
|
||||||
|
this.chart.drawMarker(svg, x, y, dataPointEnter, dataPoint);
|
||||||
|
this.chart.drawLegend(svg, dataPointEnter, dataPoint);
|
||||||
|
this.chart.drawText(svg);
|
||||||
|
this.chart.drawAxis(svg, xAxis1, yAxis1);
|
||||||
|
|
||||||
|
if (this.chart.shouldRedraw) {
|
||||||
|
this.redraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
return zoom.x(x);
|
||||||
|
};
|
||||||
|
|
||||||
|
jsOMS.Chart.BarChart.prototype.redraw = function ()
|
||||||
|
{
|
||||||
|
this.chart.shouldRedraw = false;
|
||||||
|
this.chart.chartSelect.select("*").remove();
|
||||||
|
this.draw();
|
||||||
|
};
|
||||||
|
|
||||||
|
jsOMS.Chart.BarChart.prototype.drawData = function (svg, bar, dataPointEnter, dataPoint)
|
||||||
|
{
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
dataPoint = svg.selectAll(".dataPoint").data(this.chart.dataset, function (c)
|
||||||
|
{
|
||||||
|
return c.id;
|
||||||
|
});
|
||||||
|
|
||||||
|
dataPointEnter = dataPoint.enter().append("g").attr("class", "dataPoint");
|
||||||
|
dataPointEnter.append("path").attr('clip-path', 'url(#clipper1)').attr("class", "line");
|
||||||
|
dataPoint.select('path').style("stroke-width", this.chart.dataSettings.style.strokewidth).transition().duration(500).attr("d", function (d)
|
||||||
|
{
|
||||||
|
return bar(d.points);
|
||||||
|
}).style("stroke", function (d)
|
||||||
|
{
|
||||||
|
return self.chart.color(d.name);
|
||||||
|
});
|
||||||
|
|
||||||
|
return [dataPointEnter, dataPoint];
|
||||||
|
};
|
||||||
|
|
||||||
|
jsOMS.Chart.BarChart.prototype.drawZoomPanel = function (svg, zoom)
|
||||||
|
{
|
||||||
|
this.chart.position.zoompanel.top = 10;
|
||||||
|
|
||||||
|
svg.append("rect")
|
||||||
|
.attr('class', 'zoom-panel')
|
||||||
|
.attr('y', this.chart.position.zoompanel.top)
|
||||||
|
.attr("width",
|
||||||
|
this.chart.dimension.width
|
||||||
|
- this.chart.margin.right
|
||||||
|
- this.chart.margin.left
|
||||||
|
)
|
||||||
|
.attr("height",
|
||||||
|
this.chart.dimension.height
|
||||||
|
- this.chart.margin.top
|
||||||
|
- this.chart.margin.bottom - this.chart.position.zoompanel.top
|
||||||
|
).call(zoom);
|
||||||
|
}
|
||||||
|
}(window.jsOMS = window.jsOMS || {}));
|
||||||
|
|
||||||
|
var c, chart, data, dataGen, i, k;
|
||||||
|
|
||||||
|
dataGen = (function ()
|
||||||
|
{
|
||||||
|
return (function (id)
|
||||||
|
{
|
||||||
|
return function ()
|
||||||
|
{
|
||||||
|
var data, j, nums, y1Seed;
|
||||||
|
nums = Math.ceil(Math.random() * 50) + 4;
|
||||||
|
y1Seed = Math.round(Math.random() * 20);
|
||||||
|
data = {
|
||||||
|
id: id,
|
||||||
|
name: "Dataset " + id,
|
||||||
|
points: (function ()
|
||||||
|
{
|
||||||
|
var k, ref, results;
|
||||||
|
results = [];
|
||||||
|
for (j = k = 1, ref = nums; 1 <= ref ? k <= ref : k >= ref; j = 1 <= ref ? ++k : --k) {
|
||||||
|
results.push({
|
||||||
|
x1: j,
|
||||||
|
y1: y1Seed + Math.round(Math.random() * 5)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return results;
|
||||||
|
})()
|
||||||
|
};
|
||||||
|
id = id + 1;
|
||||||
|
return data;
|
||||||
|
};
|
||||||
|
})(1);
|
||||||
|
})();
|
||||||
|
|
||||||
|
data = [];
|
||||||
|
|
||||||
|
for (i = k = 1; k <= 10; i = ++k) {
|
||||||
|
data.push(dataGen());
|
||||||
|
}
|
||||||
|
|
||||||
|
var mychart = new jsOMS.Chart.BarChart('chart');
|
||||||
|
mychart.getChart().setData(data);
|
||||||
|
mychart.draw();
|
||||||
3
Chart/Chart.js
vendored
3
Chart/Chart.js
vendored
|
|
@ -33,7 +33,8 @@
|
||||||
strokewidth: 3
|
strokewidth: 3
|
||||||
},
|
},
|
||||||
marker: {
|
marker: {
|
||||||
visible: true
|
visible: true,
|
||||||
|
type: 'circle'
|
||||||
},
|
},
|
||||||
info: {
|
info: {
|
||||||
visible: true
|
visible: true
|
||||||
|
|
|
||||||
0
Chart/StackedChart.js
Normal file
0
Chart/StackedChart.js
Normal file
Loading…
Reference in New Issue
Block a user