-
Notifications
You must be signed in to change notification settings - Fork 6
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
maintain ordinal axis sort on redraw #279
Open
samussiah
wants to merge
18
commits into
dev-v1.11.7
Choose a base branch
from
total-sortal-eclipse
base: dev-v1.11.7
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
351f306
fix #259
samussiah 20f71d4
fix #123; fix #256
samussiah e6d3004
add split bar chart examples
samussiah 607f855
fix #159; fix #207
samussiah 142688e
fix #206
samussiah 3437ef6
fix #250
samussiah f7037ad
fix #261
samussiah 8ebb0ad
fix #249
samussiah 4f94d07
fix #42
samussiah 39e3920
refactor the turd that is makeLegend.js
samussiah 8bc03d0
need to present left- and right-oriented legend-items vertically
samussiah f694996
fix #75
samussiah eb703a2
fix moveLegend.js
samussiah 7c2fbb6
fix #274
samussiah 3ebda74
fix #278
samussiah bc761a6
working on bar sort
samussiah ef21a08
fix #277
samussiah 4ef8008
tweak label
samussiah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,51 @@ | ||
<html lang="en"> | ||
<html lang = 'en'> | ||
<head> | ||
<title>Webcharts - Simple Bar Chart</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<meta http-equiv = 'Content-Type' content = 'text/html; charset = utf-8'> | ||
|
||
<script src="https://d3js.org/d3.v3.min.js"></script> | ||
<script src="../../build/webcharts.js"></script> | ||
<script type = 'text/javascript' src = 'https://d3js.org/d3.v3.min.js'></script> | ||
<script type = 'text/javascript' src = '../../build/webcharts.js'></script> | ||
|
||
<link rel="stylesheet" href="../../css/webcharts.css"> | ||
<link type = 'text/css' rel = 'stylesheet' href = '../../css/webcharts.css'> | ||
<link type = 'text/css' rel = 'stylesheet' href = '../index.css'> | ||
|
||
<style> | ||
#container { | ||
position: relative; | ||
} | ||
.controls { | ||
width: 100%; | ||
} | ||
.charts { | ||
position: relative; | ||
} | ||
.chart { | ||
position: absolute; | ||
top: 0; | ||
} | ||
.chart--vertical { | ||
width: 25%; | ||
left: 0 | ||
} | ||
.chart--horizontal { | ||
width: 75%; | ||
height: 500px; | ||
left: 27.5%; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div id = 'title'>Webcharts</div> | ||
<div id = 'subtitle'>Simple Bar Chart</div> | ||
<div id = 'container'> | ||
<div class="chart"></div> | ||
<div class = 'controls'></div> | ||
<div class = 'charts'> | ||
<div class = 'chart chart--vertical'></div> | ||
<div class = 'chart chart--horizontal'></div> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
<script src="index.js" defer></script> | ||
<script src = 'index.js' defer></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good idea to keep that in a var