Skip to content

Add an xAxisRotation option #203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
"devDependencies": {
"angular-mocks": "~1.2.16"
}
}
}
39 changes: 34 additions & 5 deletions src/angular-charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ angular.module('angularCharts').directive('acChart', function($templateCache, $c
lineCurveType: 'cardinal',
isAnimate: true,
yAxisTickFormat: 's',
waitForHeightAndWidth: false
waitForHeightAndWidth: false,
xAxisRotation: 0
};

prepareConfig();
Expand Down Expand Up @@ -322,7 +323,14 @@ angular.module('angularCharts').directive('acChart', function($templateCache, $c
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
.attr("dx", "-.8em")
.attr("dy", ".15em")
.attr("transform", function(d) {
return "rotate(" + config.xAxisRotation +")"
});

svg.append("g")
.attr("class", "y axis")
Expand Down Expand Up @@ -512,7 +520,14 @@ angular.module('angularCharts').directive('acChart', function($templateCache, $c
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
.attr("dx", "-.8em")
.attr("dy", ".15em")
.attr("transform", function(d) {
return "rotate(" + config.xAxisRotation +")"
});

svg.append("g")
.attr("class", "y axis")
Expand Down Expand Up @@ -742,7 +757,14 @@ angular.module('angularCharts').directive('acChart', function($templateCache, $c
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
.attr("dx", "-.8em")
.attr("dy", ".15em")
.attr("transform", function(d) {
return "rotate(" + config.xAxisRotation +")"
});

svg.append("g")
.attr("class", "y axis")
Expand Down Expand Up @@ -976,7 +998,14 @@ angular.module('angularCharts').directive('acChart', function($templateCache, $c
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
.call(xAxis)
.selectAll("text")
.style("text-anchor", "end")
.attr("dx", "-.8em")
.attr("dy", ".15em")
.attr("transform", function(d) {
return "rotate(" + config.xAxisRotation +")"
});

svg.append("g")
.attr("class", "y axis")
Expand Down
2 changes: 1 addition & 1 deletion test/angular-charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ describe('angularCharts', function() {
})
})

describe('styles', function() {
xdescribe('styles', function() {

it('should add styles to the document', function() {
var styleElements = document.querySelectorAll('style');
Expand Down