123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- describe('Chart.layouts', function() {
- it('should be exposed through Chart.layouts', function() {
- expect(Chart.layouts).toBeDefined();
- expect(typeof Chart.layouts).toBe('object');
- expect(Chart.layouts.defaults).toBeDefined();
- expect(Chart.layouts.addBox).toBeDefined();
- expect(Chart.layouts.removeBox).toBeDefined();
- expect(Chart.layouts.configure).toBeDefined();
- expect(Chart.layouts.update).toBeDefined();
- });
- // Disable tests which need to be rewritten based on changes introduced by
- // the following changes: https://github.com/chartjs/Chart.js/pull/2346
- // using xit marks the test as pending: http://jasmine.github.io/2.0/introduction.html#section-Pending_Specs
- xit('should fit a simple chart with 2 scales', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [
- {data: [10, 5, 0, 25, 78, -10]}
- ],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale',
- type: 'category'
- }],
- yAxes: [{
- id: 'yScale',
- type: 'linear'
- }]
- }
- }
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(112);
- expect(chart.chartArea.left).toBeCloseToPixel(41);
- expect(chart.chartArea.right).toBeCloseToPixel(250);
- expect(chart.chartArea.top).toBeCloseToPixel(32);
- // Is xScale at the right spot
- expect(chart.scales.xScale.bottom).toBeCloseToPixel(150);
- expect(chart.scales.xScale.left).toBeCloseToPixel(41);
- expect(chart.scales.xScale.right).toBeCloseToPixel(250);
- expect(chart.scales.xScale.top).toBeCloseToPixel(112);
- expect(chart.scales.xScale.labelRotation).toBeCloseTo(25);
- // Is yScale at the right spot
- expect(chart.scales.yScale.bottom).toBeCloseToPixel(112);
- expect(chart.scales.yScale.left).toBeCloseToPixel(0);
- expect(chart.scales.yScale.right).toBeCloseToPixel(41);
- expect(chart.scales.yScale.top).toBeCloseToPixel(32);
- expect(chart.scales.yScale.labelRotation).toBeCloseTo(0);
- });
- xit('should fit scales that are in the top and right positions', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [
- {data: [10, 5, 0, 25, 78, -10]}
- ],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale',
- type: 'category',
- position: 'top'
- }],
- yAxes: [{
- id: 'yScale',
- type: 'linear',
- position: 'right'
- }]
- }
- }
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(150);
- expect(chart.chartArea.left).toBeCloseToPixel(0);
- expect(chart.chartArea.right).toBeCloseToPixel(209);
- expect(chart.chartArea.top).toBeCloseToPixel(71);
- // Is xScale at the right spot
- expect(chart.scales.xScale.bottom).toBeCloseToPixel(71);
- expect(chart.scales.xScale.left).toBeCloseToPixel(0);
- expect(chart.scales.xScale.right).toBeCloseToPixel(209);
- expect(chart.scales.xScale.top).toBeCloseToPixel(32);
- expect(chart.scales.xScale.labelRotation).toBeCloseTo(25);
- // Is yScale at the right spot
- expect(chart.scales.yScale.bottom).toBeCloseToPixel(150);
- expect(chart.scales.yScale.left).toBeCloseToPixel(209);
- expect(chart.scales.yScale.right).toBeCloseToPixel(250);
- expect(chart.scales.yScale.top).toBeCloseToPixel(71);
- expect(chart.scales.yScale.labelRotation).toBeCloseTo(0);
- });
- it('should fit scales that overlap the chart area', function() {
- var chart = window.acquireChart({
- type: 'radar',
- data: {
- datasets: [{
- data: [10, 5, 0, 25, 78, -10]
- }, {
- data: [-19, -20, 0, -99, -50, 0]
- }],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(512);
- expect(chart.chartArea.left).toBeCloseToPixel(0);
- expect(chart.chartArea.right).toBeCloseToPixel(512);
- expect(chart.chartArea.top).toBeCloseToPixel(32);
- expect(chart.scale.bottom).toBeCloseToPixel(512);
- expect(chart.scale.left).toBeCloseToPixel(0);
- expect(chart.scale.right).toBeCloseToPixel(512);
- expect(chart.scale.top).toBeCloseToPixel(32);
- expect(chart.scale.width).toBeCloseToPixel(512);
- expect(chart.scale.height).toBeCloseToPixel(480);
- });
- xit('should fit multiple axes in the same position', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [{
- yAxisID: 'yScale1',
- data: [10, 5, 0, 25, 78, -10]
- }, {
- yAxisID: 'yScale2',
- data: [-19, -20, 0, -99, -50, 0]
- }],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale',
- type: 'category'
- }],
- yAxes: [{
- id: 'yScale1',
- type: 'linear'
- }, {
- id: 'yScale2',
- type: 'linear'
- }]
- }
- }
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(102);
- expect(chart.chartArea.left).toBeCloseToPixel(86);
- expect(chart.chartArea.right).toBeCloseToPixel(250);
- expect(chart.chartArea.top).toBeCloseToPixel(32);
- // Is xScale at the right spot
- expect(chart.scales.xScale.bottom).toBeCloseToPixel(150);
- expect(chart.scales.xScale.left).toBeCloseToPixel(86);
- expect(chart.scales.xScale.right).toBeCloseToPixel(250);
- expect(chart.scales.xScale.top).toBeCloseToPixel(103);
- expect(chart.scales.xScale.labelRotation).toBeCloseTo(50);
- // Are yScales at the right spot
- expect(chart.scales.yScale1.bottom).toBeCloseToPixel(102);
- expect(chart.scales.yScale1.left).toBeCloseToPixel(0);
- expect(chart.scales.yScale1.right).toBeCloseToPixel(41);
- expect(chart.scales.yScale1.top).toBeCloseToPixel(32);
- expect(chart.scales.yScale1.labelRotation).toBeCloseTo(0);
- expect(chart.scales.yScale2.bottom).toBeCloseToPixel(102);
- expect(chart.scales.yScale2.left).toBeCloseToPixel(41);
- expect(chart.scales.yScale2.right).toBeCloseToPixel(86);
- expect(chart.scales.yScale2.top).toBeCloseToPixel(32);
- expect(chart.scales.yScale2.labelRotation).toBeCloseTo(0);
- });
- xit ('should fix a full width box correctly', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [{
- xAxisID: 'xScale1',
- data: [10, 5, 0, 25, 78, -10]
- }, {
- xAxisID: 'xScale2',
- data: [-19, -20, 0, -99, -50, 0]
- }],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale1',
- type: 'category'
- }, {
- id: 'xScale2',
- type: 'category',
- position: 'top',
- fullWidth: true
- }],
- yAxes: [{
- id: 'yScale',
- type: 'linear'
- }]
- }
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(484);
- expect(chart.chartArea.left).toBeCloseToPixel(45);
- expect(chart.chartArea.right).toBeCloseToPixel(512);
- expect(chart.chartArea.top).toBeCloseToPixel(60);
- // Are xScales at the right spot
- expect(chart.scales.xScale1.bottom).toBeCloseToPixel(512);
- expect(chart.scales.xScale1.left).toBeCloseToPixel(45);
- expect(chart.scales.xScale1.right).toBeCloseToPixel(512);
- expect(chart.scales.xScale1.top).toBeCloseToPixel(484);
- expect(chart.scales.xScale2.bottom).toBeCloseToPixel(60);
- expect(chart.scales.xScale2.left).toBeCloseToPixel(0);
- expect(chart.scales.xScale2.right).toBeCloseToPixel(512);
- expect(chart.scales.xScale2.top).toBeCloseToPixel(32);
- // Is yScale at the right spot
- expect(chart.scales.yScale.bottom).toBeCloseToPixel(484);
- expect(chart.scales.yScale.left).toBeCloseToPixel(0);
- expect(chart.scales.yScale.right).toBeCloseToPixel(45);
- expect(chart.scales.yScale.top).toBeCloseToPixel(60);
- });
- describe('padding settings', function() {
- it('should apply a single padding to all dimensions', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [
- {
- data: [10, 5, 0, 25, 78, -10]
- }
- ],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale',
- type: 'category',
- display: false
- }],
- yAxes: [{
- id: 'yScale',
- type: 'linear',
- display: false
- }]
- },
- legend: {
- display: false
- },
- title: {
- display: false
- },
- layout: {
- padding: 10
- }
- }
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(140);
- expect(chart.chartArea.left).toBeCloseToPixel(10);
- expect(chart.chartArea.right).toBeCloseToPixel(240);
- expect(chart.chartArea.top).toBeCloseToPixel(10);
- });
- it('should apply padding in all positions', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [
- {
- data: [10, 5, 0, 25, 78, -10]
- }
- ],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale',
- type: 'category',
- display: false
- }],
- yAxes: [{
- id: 'yScale',
- type: 'linear',
- display: false
- }]
- },
- legend: {
- display: false
- },
- title: {
- display: false
- },
- layout: {
- padding: {
- left: 5,
- right: 15,
- top: 8,
- bottom: 12
- }
- }
- }
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(138);
- expect(chart.chartArea.left).toBeCloseToPixel(5);
- expect(chart.chartArea.right).toBeCloseToPixel(235);
- expect(chart.chartArea.top).toBeCloseToPixel(8);
- });
- it('should default to 0 padding if no dimensions specified', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [
- {
- data: [10, 5, 0, 25, 78, -10]
- }
- ],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale',
- type: 'category',
- display: false
- }],
- yAxes: [{
- id: 'yScale',
- type: 'linear',
- display: false
- }]
- },
- legend: {
- display: false
- },
- title: {
- display: false
- },
- layout: {
- padding: {}
- }
- }
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- expect(chart.chartArea.bottom).toBeCloseToPixel(150);
- expect(chart.chartArea.left).toBeCloseToPixel(0);
- expect(chart.chartArea.right).toBeCloseToPixel(250);
- expect(chart.chartArea.top).toBeCloseToPixel(0);
- });
- });
- describe('ordering by weight', function() {
- it('should keep higher weights outside', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [
- {
- data: [10, 5, 0, 25, 78, -10]
- }
- ],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- legend: {
- display: true,
- position: 'left',
- },
- title: {
- display: true,
- position: 'bottom',
- },
- },
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- var xAxis = chart.scales['x-axis-0'];
- var yAxis = chart.scales['y-axis-0'];
- var legend = chart.legend;
- var title = chart.titleBlock;
- expect(yAxis.left).toBe(legend.right);
- expect(xAxis.bottom).toBe(title.top);
- });
- it('should correctly set weights of scales and order them', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- datasets: [
- {
- data: [10, 5, 0, 25, 78, -10]
- }
- ],
- labels: ['tick1', 'tick2', 'tick3', 'tick4', 'tick5', 'tick6']
- },
- options: {
- scales: {
- xAxes: [{
- id: 'xScale0',
- type: 'category',
- display: true,
- weight: 1
- }, {
- id: 'xScale1',
- type: 'category',
- display: true,
- weight: 2
- }, {
- id: 'xScale2',
- type: 'category',
- display: true
- }, {
- id: 'xScale3',
- type: 'category',
- display: true,
- position: 'top',
- weight: 1
- }, {
- id: 'xScale4',
- type: 'category',
- display: true,
- position: 'top',
- weight: 2
- }],
- yAxes: [{
- id: 'yScale0',
- type: 'linear',
- display: true,
- weight: 1
- }, {
- id: 'yScale1',
- type: 'linear',
- display: true,
- weight: 2
- }, {
- id: 'yScale2',
- type: 'linear',
- display: true
- }, {
- id: 'yScale3',
- type: 'linear',
- display: true,
- position: 'right',
- weight: 1
- }, {
- id: 'yScale4',
- type: 'linear',
- display: true,
- position: 'right',
- weight: 2
- }]
- }
- }
- }, {
- canvas: {
- height: 150,
- width: 250
- }
- });
- var xScale0 = chart.scales.xScale0;
- var xScale1 = chart.scales.xScale1;
- var xScale2 = chart.scales.xScale2;
- var xScale3 = chart.scales.xScale3;
- var xScale4 = chart.scales.xScale4;
- var yScale0 = chart.scales.yScale0;
- var yScale1 = chart.scales.yScale1;
- var yScale2 = chart.scales.yScale2;
- var yScale3 = chart.scales.yScale3;
- var yScale4 = chart.scales.yScale4;
- expect(xScale0.weight).toBe(1);
- expect(xScale1.weight).toBe(2);
- expect(xScale2.weight).toBe(0);
- expect(xScale3.weight).toBe(1);
- expect(xScale4.weight).toBe(2);
- expect(yScale0.weight).toBe(1);
- expect(yScale1.weight).toBe(2);
- expect(yScale2.weight).toBe(0);
- expect(yScale3.weight).toBe(1);
- expect(yScale4.weight).toBe(2);
- var isOrderCorrect = false;
- // bottom axes
- isOrderCorrect = xScale2.top < xScale0.top && xScale0.top < xScale1.top;
- expect(isOrderCorrect).toBe(true);
- // top axes
- isOrderCorrect = xScale4.top < xScale3.top;
- expect(isOrderCorrect).toBe(true);
- // left axes
- isOrderCorrect = yScale1.left < yScale0.left && yScale0.left < yScale2.left;
- expect(isOrderCorrect).toBe(true);
- // right axes
- isOrderCorrect = yScale3.left < yScale4.left;
- expect(isOrderCorrect).toBe(true);
- });
- });
- describe('box sizing', function() {
- it('should correctly compute y-axis width to fit labels', function() {
- var chart = window.acquireChart({
- type: 'bar',
- data: {
- labels: ['tick 1', 'tick 2', 'tick 3', 'tick 4', 'tick 5'],
- datasets: [{
- data: [0, 2.25, 1.5, 1.25, 2.5]
- }],
- },
- options: {
- legend: {
- display: false,
- },
- },
- }, {
- canvas: {
- height: 256,
- width: 256
- }
- });
- var yAxis = chart.scales['y-axis-0'];
- // issue #4441: y-axis labels partially hidden.
- // minimum horizontal space required to fit labels
- expect(yAxis.width).toBeCloseToPixel(33);
- expect(yAxis.ticks).toEqual(['2.5', '2.0', '1.5', '1.0', '0.5', '0']);
- });
- });
- });
|