Skip to content
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

v0.3.0 #486

Merged
merged 44 commits into from
Aug 22, 2014
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
3d8e00e
Introduce new architecture
masayuki0812 Jun 29, 2014
566f1e2
Define concat in grant task
masayuki0812 Jun 29, 2014
7e59cb1
Refactor
masayuki0812 Jul 22, 2014
c770dad
Refactor
masayuki0812 Jul 26, 2014
d5d85c7
Fix jshint
masayuki0812 Jul 26, 2014
2d676fb
Merge diff to master
masayuki0812 Jul 26, 2014
476aa98
Make arc plugable
masayuki0812 Jul 27, 2014
841f76b
Make subchart plugable
masayuki0812 Jul 27, 2014
c649a1c
Use closure variables for minify
masayuki0812 Jul 27, 2014
f720eb3
Refactor config
masayuki0812 Jul 29, 2014
4fee43b
Refactor for minify
masayuki0812 Jul 30, 2014
7e3d23d
Modify hasType interface
masayuki0812 Jul 31, 2014
07b31a8
Revert "Modify hasType interface"
masayuki0812 Jul 31, 2014
f9b46bb
Revert "Refactor for minify"
masayuki0812 Jul 31, 2014
63edd6d
Ref CLASS key
masayuki0812 Jul 31, 2014
e2a31ff
Refactor hasType
masayuki0812 Jul 31, 2014
39afb5e
Fix trivial
masayuki0812 Jul 31, 2014
6ea5dbc
Fix class ref name
masayuki0812 Jul 31, 2014
47e95ec
Refactor init of internal params
masayuki0812 Jul 31, 2014
6fd0279
Remove inner y axis
masayuki0812 Jul 31, 2014
26638a3
Make plugable legend
masayuki0812 Aug 1, 2014
06f36e0
Make plugble zoom
masayuki0812 Aug 1, 2014
fe5a71a
Separete src files
masayuki0812 Aug 1, 2014
3aae9ba
Fix gauge
masayuki0812 Aug 1, 2014
bc8226a
Fix bugs
masayuki0812 Aug 2, 2014
da90124
Enable additional config
masayuki0812 Aug 4, 2014
3ce01be
Fix trivial
masayuki0812 Aug 4, 2014
a0801cb
Merge master fix
masayuki0812 Aug 9, 2014
1d105c1
Update c3.js and c3.min.js
masayuki0812 Aug 9, 2014
8e9bd1a
Separate axis
masayuki0812 Aug 15, 2014
991edd3
Modularize grid
masayuki0812 Aug 16, 2014
248324d
Fix position of data label on flow
masayuki0812 Aug 16, 2014
2fa6a3b
Remove isFunction
masayuki0812 Aug 16, 2014
1e6867a
Modularize region
masayuki0812 Aug 16, 2014
55c1a2a
Modularize text
masayuki0812 Aug 16, 2014
5ef894a
Modularize bar
masayuki0812 Aug 16, 2014
1669ec4
Fix tick format for timeseries
masayuki0812 Aug 16, 2014
f2f7545
Modularize line, area and circle
masayuki0812 Aug 16, 2014
0516616
Modularize event rect
masayuki0812 Aug 17, 2014
0b4a324
Use bind instead of my function
masayuki0812 Aug 17, 2014
adbfd48
Separate api
masayuki0812 Aug 17, 2014
a6ab889
Modularize api.flow
masayuki0812 Aug 17, 2014
24e06dd
Move transformTo to api.transform.js
masayuki0812 Aug 17, 2014
ae7bc0c
Fix updateSize
masayuki0812 Aug 19, 2014
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
Prev Previous commit
Next Next commit
Fix position of data label on flow
  • Loading branch information
masayuki0812 committed Aug 16, 2014
commit 248324db32784220a3b96fda3fad3946b9a75d2b
2 changes: 1 addition & 1 deletion c3.js
Original file line number Diff line number Diff line change
Expand Up @@ -2981,7 +2981,7 @@
padding = $$.isBarType(d) ? 4 : 6;
xPos = points[2][1] + padding * (d.value < 0 ? -1 : 1);
} else {
xPos = points[0][0] + (points[2][0] - points[0][0]) / 2;
xPos = $$.hasType('bar') ? (points[2][0] + points[0][0]) / 2 : points[0][0];
}
return xPos > $$.width ? $$.width - box.width : xPos;
};
Expand Down
Loading