-
Notifications
You must be signed in to change notification settings - Fork 58
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
Tick Formatting #17
Comments
Thanks, would this apply to the choropleth chart as well? I can't seem to come up with any sane way to add the required overlay option: I've been trying this in a renderlet, but it doesn't render: renderlet: function(chart){
|
Answered my own question. This does work: Thanks for a cool library. It's saved me a lot of work. 👍 |
Thanks for a great library. I've figured out most of what I've needed to do from the examples and just playing around. However I was wondering if tick formatting was possible. In regular dc.js you can do something like this to format the axis:
var axis_format = d3.time.format("%x");
over_time.width(1050)
.height(350)
.dimension(times)
.group(time_counts)
.xAxis().tickFormat(function(d) { return axis_format(d); });
However, I can't seem to work out specifying axis and format with angular-dc.
Thanks,
Dean
The text was updated successfully, but these errors were encountered: