Commit Graph

945 Commits (master)

Author SHA1 Message Date
Robin Hu 5e5ba5c34b Merge branch 'development' into nvd3-UI-134
Conflicts:
	nv.d3.min.js
11 years ago
Robin Hu 1a6b5dab13 Adding more inline comments to tooltip.js.
Removed an unused feature for bolding a row in the tooltip.
11 years ago
Robin Hu 3a75b583ca Created more robust tooltip solution. Tooltips render inside the SVG's parent DIV.
They can be positioned, even if there are relative positioned elements above it.
11 years ago
Robin Hu 8dea03da44 Converted tooltip.js getTooltipContainer function to use d3.select.
Rebuilt nv.d3.js
11 years ago
Robin Hu 6e84a6845c Tooltips are no longer rendered on document.body.
Instead, they are rendered inside the chart container.
Added some CSS styles to nvtooltip
11 years ago
Robin Hu e1e9144e5f Updating lineChartSVGResize example to use interactive guideline.
Rebuilding nv.d3.js.
11 years ago
Robin Hu 6c2f19a044 Updating CSS styling around table.td 11 years ago
Robin Hu c13be39c12 Added inline comments.
Changed style td.legend to td.legend-color-guide, becuase it conflicts with another .legend style being used elsewhere.
11 years ago
Robin Hu 1ff26f5fab Optimizing interactive layer code, so d3.mouse(this) is called only once per mousemove. 11 years ago
Robin Hu 75ff9267c8 Finally resolving the nagging issue in IE where tooltips
were not showing up in the right place, due to issue with d3.mouse.

The solution is to take the svg.getBoundingClientRect(), and
taking 25% of it's top and left values.
11 years ago
Robin Hu 792a36262d Removed transitions from nv-point on hover. 11 years ago
Robin Hu ca769e706d Using svg.getBoundingClientRect() instead of elem.offsetLeft
when calculating tooltip position.  Also replaced window.scollY with
pageYOffset.  This is for Firefox and MSIE compatibility.
11 years ago
Robin Hu 14117b32de Fixing a NASTY Microsoft IE bug I found during cross browser testing.
Mousing over SVG.rect returns wrong X,Y coordinates, but only in IE.
11 years ago
Robin Hu 8b870e6b0a Created function to get the first non-svg parent element in tooltip.js.
Needed because in Firefox and IE, SVG.offsetParent does not exist.
11 years ago
Robin Hu 4b8ad322cf Updating algorithm for calculating the tooltip offset positioning. 11 years ago
Robin Hu 65edf27199 Fixed bug in nv.interactiveBisect, for situations where the xAccessor is
function(d,i) { return i}
11 years ago
Robin Hu fa89918faf Removed trailing commas in interactiveLayer code. Caused javascript error/warning. 11 years ago
Robin Hu 3c6d1b65ee Added historicalBar.interactive. If set to false, tooltips/hoverovers don't work. 11 years ago
Robin Hu 81bf049daa The .nvd3 .nv-bars rect:hover style was incorrect. it needs to be "rect.hover",
because we are applying the hover class when we mouse over a bar.
11 years ago
Robin Hu 8479f5fce1 Exposed 'highlightPoint' and 'clearHighlights' in historicalBar. 11 years ago
Robin Hu 817340cff5 Instead of using a dispatch for handling 'highlightPoint' and 'clearHighlights', I am making
those functions a direct method of nv.models.scatter.  So you just say scatter.highlightPoint,
instead of scatter.dispatch.highlightPoint.
11 years ago
Robin Hu b07d1f2a87 Added back the 'tooltips' boolean flag to lineChart.dispatch.tooltipShow.
REbuilt nv.d3.js and minified version.
11 years ago
Robin Hu 1eb01d703d Turning off Voronoi point path creation, if using the new interactive
guideline and tooltip.

Turns out, Voronoi is not needed in this new interactive mode!
11 years ago
Robin Hu 93a26c53c9 Fixing issue in scatterPlusLineChart where tooltips don't activate on
chart initial load.
11 years ago
Robin Hu 28d708d09d Adding unit test on lineChartTest.html for when points are NaN, undefined,
etc.
Found a few edge cases where errors happen. Creating nv.utils.NaNtoZero()
function, to be used in places where points and lines are rendered.

Using NantoZero in scatter.js and interactiveGuideline.
11 years ago
Robin Hu cdb9ea83ab Integrated interactive guideline into stacked area charts. Updated the
stacked area example.
11 years ago
Robin Hu d974556d05 Cleaned up interactive guideline dispatch code.
Integrated interactive guideline into cumulativeLineChart and updated
example.
11 years ago
Robin Hu 575ed7950e Fixed tooltip display edge case, where if the tooltip is very large, it
will render off window if too close to the bottom.
11 years ago
Robin Hu 02da71c944 Added six more important line chart test cases. Changed tests to include
area charts.
11 years ago
Robin Hu defaf765e8 Created nv.interactiveBisect utility function, and integrated it into the
interactiveGuideline logic.  This function is used to find the x point
position given a mouseX location. It's a more robust solution. Made sure
chart tests passed.
11 years ago
Robin Hu 27d80457b9 Developed stronger backward compatibility with the old tooltip format. Old
tooltips work by default, but if you enable 'useInteractiveGuideline', the
new stuff will show.
11 years ago
Tyler Wolf f84a1bfaa9 fixed bug on previous push 11 years ago
Tyler Wolf 45e5efa82c fixed discrete bar chart y bleeding on ydomain min >0 11 years ago
Robin Hu 0b3ef24e0b Added test page for lineChart. Continued work on making the interactive line layer. 11 years ago
Robin Hu dbe826943f Added interactiveLayer.js and integrated this utility into lineChart.js. 11 years ago
Robin Hu c079f3e122 Added 'ClearHighlights' dispatch to scatter.
Created preliminary implementation of mousemove event on lineChart.
11 years ago
Robin Hu 4038a56c7a Added color legend square to the tooltip for each series. 11 years ago
Robin Hu 4cbd253c67 Added the 'highlightPoint' dispatch on nv.models.scatter. This dispatch lets the programmer highlight any point on any series.
Currently used in lineChart to highlight points.
11 years ago
Robin Hu dc66846d46 Updated scatter.js so that when you mouseover a path-point, it will return all series information in the mouse event dispatch.
Updated nv.models.tooltip with more features.
Updated styling of the tooltip.
11 years ago
Robin Hu 79fb28f088 Updated nv.models.tooltip to have a custom HTML content generator. The default is to put tooltip inside a <table> tag. 11 years ago
Robin Hu c02705fc18 Created nv.models.tooltip in tooltip.js.
This new model encapsulates most of the tooltip functionality.
11 years ago
Robin Hu 9122285ae5 Merge branch 'development' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
Luiz Laydner 1ca88b7956 correcting bug on heigth and width property accessors of stackedAreaChart 11 years ago
Tyler Wolf c1db474991 Merge branch 'development' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
Tyler Wolf 705f7efb29 Merge branch 'master' into development
Conflicts:
	nv.d3.js
11 years ago
Tyler Wolf 9d13fb73a4 updated multiChart to allow changing yDomain on yscales 11 years ago
Robin Hu d10350455e Added 'rightAlign' property to legend.js (defaults to true). If set to 'false', legends become left aligned. 11 years ago
Robin Hu 24b949d931 Fixed two stacked area chart issues:
1. When in expanded view in stacked area chart, if there is missing data (zero data), 'holes' will be displayed in the chart where data is missing.
2. Tooltips used to be disabled if the stacked area showed values less than zero. This functionality has been disabled.
11 years ago
Robin Hu c57626ad9b Merge branch 'master' of https://github.com/novus/nvd3
Conflicts:
	examples/historicalBarChart.html
	nv.d3.js
	nv.d3.min.js
	src/models/historicalBarChart.js
	src/nv.d3.css
11 years ago
Simon Kelly 3b8c364ff4 expose x-axis group spacing in multibar 11 years ago
Tyler Wolf abeac917da fixed a merge conflict. No change to master code, so this commit is not tagged 11 years ago
Tyler Wolf 086e0e5d9e Merge branch 'grunt' of https://github.com/lihongxun945/nvd3 into lihongxun945-grunt
Conflicts:
	nv.d3.min.js
11 years ago
Robin Hu 6b63db67d0 Updated several charts so that the showXAxis, showYAxis and rightAlignYAxis options are available for use. 11 years ago
Robin Hu 0151cdccab Made it so that double clicking a legend item will cause all other series' to be disabled. 11 years ago
Robin Hu 739b93fecf Adding ability to right align the Y-axis for historical bar and line charts. 11 years ago
Robin Hu 319520513f Updated historical bar chart so that the xAxis.ticks property must be set by the user of the chart. Also changed is so that the y-axis has 0 transition. 11 years ago
Robin Hu 62edb49ab8 Added showXAxis and showYAxis feature to lineChart and historicalBarChart. 11 years ago
Robin Hu 7bf1091f41 Adding historical bar chart. 11 years ago
Robin Hu 1703cc428a Adding historical bar chart code. 11 years ago
Robin Hu 65b97714fa Merge branch 'master' of https://github.com/novus/nvd3
Conflicts:
	nv.d3.min.js
11 years ago
Robin Hu a9b6f3ab09 FIxing bug in line.js. 11 years ago
Bob Monteverde 065c8eb84d removed transition and delay on tooltips, you can uncomment to revert this. Minor fix to scatter, points will keep custom classes after transiiton 11 years ago
Dingo b0bc28cbe0 fixed cumulativeLineChart drag lag 11 years ago
Tyler Wolf af8b13dd48 Merge branch 'master' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
frank shao 90e4078941 Adjusted jitter in scatter.js 11 years ago
Tyler Wolf a437d1ef0e Merge branch 'master' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
Robin Hu 8731046948 Issue #140. Added ability to stagger the x-axis labels on Multibar charts. 11 years ago
Tyler Wolf bd0aab25ca lots of changes 11 years ago
Tyler Wolf 1ac80d87c8 Merge branch 'master' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
Tyler Wolf a6c18a730a almost there 11 years ago
Robin Hu 3e48d32290 Altered the way 'jittering' is handled for scatter plots. This should fix any d3.geom.voronoi issues we encountered. 11 years ago
Tyler Wolf fb5897eb52 progress 11 years ago
Tyler Wolf a67a42333e updates, on hperf pages 11 years ago
twolfnovus a65b5c4988 Merge branch 'master' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
Robin Hu ba44aa3053 Fixing issue #136. Improved logic in tooltip.js for handling <svg> and <g> tags. 11 years ago
Robin Hu bdeb27a47f Fixed issue #22. 11 years ago
twolfnovus f108de0bd1 Merge branch 'master' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
Robin Hu d690c17a2b Fixed issue #25. Updated logic in tooltip.js, so that tooltips are not inserted into SVG containers. 11 years ago
Robin Hu 4ba155d733 For ticket AN-617. Added ability to create an 'average' horizontal line for cumulative line charts. Updated the example HTML file too. 11 years ago
Robin Hu 95b0459d27 Fixed issue #76. Tooltips were not rendering for bullet charts. 11 years ago
Robin Hu 92df22993d Added calcApproxTextWidth util function. Fixed overlapping legend, as noted in issue #107. 11 years ago
Robin Hu 0c422148d9 Merge branch 'master' into development
Conflicts:
	nv.d3.min.js
11 years ago
Robin Hu 6fcee4e17d Removed some line breaks that were added. 11 years ago
Robin Hu 0894152def Fixed issue #131. Was able to remove errors:
d='MZ', cx="NaN", cy="NaN".  The error "Problem parsing d=''" remains.
11 years ago
twolfnovus f00781535b Merge branch 'master' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.js
	nv.d3.min.js
	src/models/multiBar.js
11 years ago
Robin Hu c5d7a63cfb For issue 77. Changed some code in multiBar.js to use selection.transition() instead of d3.transition(selection) syntax. 11 years ago
twolfnovus a10c25b333 a few changes for v3 upgrade 11 years ago
twolfnovus 0d5f297d61 updated cumulativeLineChart.js 11 years ago
frank shao ba59c9e019 #128 fixed 11 years ago
Anders Johnson 08b23cf37d Add opt-in scatter point color override. 11 years ago
Michael J. Cohen 5650e9cde9 Check if windowResize argument is undefined
When loading nv3d without creating a chart, ```nv.utils.windowResize``` is called somewhere with an undefined argument, so we should check if it is undefined and not try to replace the old event handler, otherwise every resize event generates an error because ```fun``` is undefined.

I was able to produce  by including the following libs and triggering onresize events.

```
nvd3/lib/d3.v2.js
nvd3/src/core.js
nvd3/src/tooltip.js
nvd3/src/utils.js
nvd3/src/models/lineWithFocusChart.js
nvd3/src/models/legend.js
nvd3/src/models/axis.js
nvd3/src/models/line.js
nvd3/src/models/scatter.js
```

Sponsored-by: CentroNet Marketing
11 years ago
lihongxun 2a394feab3 add grunt, see more in README.md about how to use intstall and use grunt 11 years ago
Tyler Wolf b682cf6ad3 Merge branch 'master' into development
Conflicts:
	nv.d3.min.js
11 years ago
Tyler Wolf 43e86f5405 fixed some small, but problematic issues with indented tree 11 years ago
Dingo 76b97fde13 all models updated to run examples using d3.v3 11 years ago
Dingo dd94b599fe Merge branch 'development' into d3v3_Upgrade 11 years ago
Dingo ad288b96f4 Merge branch 'master' of https://github.com/novus/nvd3 into d3v3_Upgrade 11 years ago
Dingo 18b6fd4cbf Merge branch 'master' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
Dingo 80dd13db90 Merge branch 'development' of https://github.com/novus/nvd3 into development 11 years ago
Dingo 833d4391f4 changes to linePlusBar and linePlusBarWithFocus 11 years ago
ciaranj b2ef5f2254 Fixes Issue #109 - Prototype.js breaks StackedAreaChart
It appears the specification of the sizeDomain as a single element
array causes d3.js to use the wrong interpolatin function internally.
11 years ago
Tyler Wolf 93ed2ad226 added a few semicolons 11 years ago
Tyler Wolf 36d4e999f6 removed logging from multibar.js 11 years ago
Tyler Wolf 7d69723a2d added hideable attribute to multiBar.js so that the bars can be hidden the multibar is part of a larger chart 11 years ago
Dingo f41a4db9b9 updating alphabetically, working on indentedTree.js 11 years ago
Dingo 0593a97d44 fixing issue with lineWithFocusChart.js 11 years ago
Tyler Wolf db144a9290 updated many models for state management 11 years ago
Tyler Wolf 7335631472 merged mookie5dc-master pull request into master 11 years ago
Tyler Wolf e092bac1c2 fixed update for parallelCoords.js, ran make for all merged pull requests 11 years ago
Tyler Wolf fb8bfe4a6a Merge pull request #6 from kapep/master
Fixed rotateLabels option for multiBarCharts
11 years ago
Tyler Wolf c1804b29c1 Merge pull request #23 from ggriffiniii/master
Adjust tickLabel's on update rather than enter.
11 years ago
Mike Wallace 8632be22be stackedAreaChart triggers stateChange on areaClick 11 years ago
Tyler Wolf 3ea026ab6d Merge pull request #74 from kawanet/issue-73
Issue #73 Error: Invalid value for <rect> attribute y="NaN", height="NaN"
11 years ago
Tyler Wolf bfcbd0c764 Merge pull request #75 from wvanbergen/master
Tooltip formatting bugfix
11 years ago
Tyler Wolf 843d31229f Merge pull request #78 from michalkutil/multiBarChart-legendWidth
Multi bar chart legend width
11 years ago
Tyler Wolf 569b2a0b0d Merge pull request #93 from bertrandchenal/master
Add support for startAngle and endAngle on pie chart
11 years ago
Tyler Wolf 536e4fe531 merged pfeffer's pull request, also updated indented tree zerofilter 11 years ago
Tyler Wolf 2572a1ed21 Merge branch 'changes' of https://github.com/pfeffer/nvd3 into pfeffer-changes 11 years ago
Tyler Wolf 1327ca3f86 Added filter functionality to indentedtree model (can be used to filter values besides zero) 11 years ago
Dingo 7b95e42a64 Added parallelCoords.js model from the NYC d3.js meetup 11 years ago
Bob Monteverde a52eddf761 Made state.disabled always set on charts that keep state 11 years ago
Bob Monteverde 859b97a9d3 Fixed padData on scatter, added padDataOuter to account for outerPadding on ordinal scales 11 years ago
Bob Monteverde 88c4157d0e Minor fix to scatter to allow all series to be disabled and padData set to true without error 11 years ago
Maria 80f02aff8c undo the size change 11 years ago
Maria 61fbf4ce27 add key description to display in tooltip 11 years ago
Bertrand Chenal 9207185532 Add support for startAngle and endAngle on pie chart 11 years ago
Maria 072af64a25 keep the size of pie chart when change the svg size 11 years ago
Tyler Wolf 81bccd2eb3 Merge branch 'master' of https://github.com/novus/nvd3 11 years ago
Tyler Wolf 050e827f6c fixed js error in scatter voronoi mouseover 11 years ago
Maria fa765c970b add property for label radius 11 years ago
Bob Monteverde 8415ee55d3 Made tooltip look a little sexier 11 years ago
Bob Monteverde e161c57e24 Made tooltip look a little sexier 11 years ago
Bob Monteverde f4a7f27a96 Made tooltip look a little sexier 11 years ago
Bob Monteverde d376d86d5b Fixed max and min calculations for multibar stacked 11 years ago
Bob Monteverde 11d504c6cd Added barColor fucntionality to multibar to imitate what I did for multibarHorizontal 11 years ago
Bob Monteverde 825378124e Fixed issue with custom group color and disabling series on the horiontal bar chart 11 years ago
Bob Monteverde c2f5c49a8d Positive and negative stacked horizontal withunique colors per group 11 years ago
Bob Monteverde d4566d25e7 Horizontal barcan nopw stack with both positive and negative, verticaly aligned values with center of bar 11 years ago
Ricardo 4fccaa8cb7 #69: adding a way to color individual bars (rather than the whole series as it is done right now). Leaving the previous behavior as the default. 11 years ago
Michal Kutil 96d03f575d Multi bar chart legend width computed with 'showControls' respect 11 years ago
Willem van Bergen c81218f315 Use the formatter that belongs to yAxis of the series to format the y value of a tooltip, instead of basing it on the series chart type. 11 years ago
kawanet 2effb06d9e Issue #73 Error: Invalid value for <rect> attribute y="NaN", height="NaN" 11 years ago
Ricardo 5079b67649 #68: giving the controls additional space on the stacked area chart 11 years ago
Tyler Wolf 9d8403874e Merge branch 'master' of https://github.com/novus/nvd3 11 years ago
Tyler Wolf f8fbe286aa #56 stacked bar chart now stacks both positive and negative values 11 years ago
Ricardo f8625b9dc5 Merge pull request #4 from ClemensSchneider/pie_label_positioning
added option to position labels in pie chart in a sunbeam manner (by ClemensSchneider)
11 years ago
kaosko ee2d3ee08f fix inconsistent reference to render attribute in render() 12 years ago
Lee Gillentine a89a5ce29a Grammar police: fixing typos 12 years ago
Lee Gillentine 2ac200ead0 Merging in upstream changes 12 years ago
Tyler Wolf 5f0700eac9 #33, plus added flatTestData() for testing with flat data to cumulativeLineChart example 12 years ago
Ricardo db9778e7d5 Added a 'beforeUpdate' dispatch event to the discreteBarChart 12 years ago
Tyler Wolf b0c57c33f4 #26 12 years ago
Glenn Griffin c6c89b7e07 Adjust axis labels on update rather than enter.
This allows an axis to change orientation and have the tick label respond accordingly.
12 years ago
Bob Monteverde 4e12985eb5 Made state accessible from chart.state() 12 years ago
Bob Monteverde 6213a74e3b Adding state management to most charts 12 years ago
Bob Monteverde 8d7553d734 remove stateChange call from changeState handler 12 years ago
Bob Monteverde 64a066ccdf Added changeSatte functionality to update chart from a state object 12 years ago
Bob Monteverde 94629ff02e Added initial state management to cumulativeLine.. currently dispatches state whenevr it changes, but state can not be adjusted outside of the chart... that's coming next 12 years ago
Bob Monteverde 97e3c25345 Added ability to right align the sparklinePlus current value 12 years ago
Lee Gillentine 2a76897f8f Fixing typo in styling 12 years ago
Bob Monteverde 2922f6ea5b Mergin with repo changes 12 years ago
Bob Monteverde 24c0b0f7d5 sparklinePlus: aligning the value with the final value is now optional via alignValue flag 12 years ago
Ricardo cdb68dafca allowing the bullet chart to hide the previous data point if the value is null 12 years ago
Bob Monteverde 38ba70f4dc Added padData option to allow bars and lines to align correctly without cutting off half of the first and last bar 12 years ago
Ricardo 1e4ddf43d7 Merge pull request #11 from passy/patch-1
Prevent leak of 'graph' into global scope.

Thanks passy!
Ricardo
12 years ago
twolf d0d5346535 expanded borders for voronoi field on charts 12 years ago
Pascal Hartig 112fa28311 Prevent leak of 'graph' into global scope 12 years ago
Dingo 5f79dba1ea UI-38 fixed all scatter-based charts for use on IE9 12 years ago
Bob Monteverde 2338ebc8ce Minor css tweak to the bullet 12 years ago
Bob Monteverde 9a67e18e08 Merge branch 'master' of github.com:novus/nvd3 12 years ago
Bob Monteverde 826b938c0d Minor css tweak to the bullet 12 years ago
twolf 5bb5e161ab UI-38 fixed voronoi issue in IE9 12 years ago
unknown 09ed5ec092 fixed issue with scatter resize 12 years ago
Ricardo 1167814745 Avoiding rewriting the console.log in IE. The new nv.log implementation works under IE. 12 years ago
Bob Monteverde 66b38c9c23 Merging changes from server 12 years ago
Bob Monteverde 281a5a2b60 Re-wrote the bullet model to work with positive and negative numbers... including bullets that range both pos and neg 12 years ago
twolf f83e6eb16b fixed tooltip problem on stacked Area in IE 12 years ago
Bob Monteverde 99329c6fc9 Lots of enahncements to scatter and stacked are, useVoronoi(false) now functions correctly. IE9 fixes. 12 years ago
Bob Monteverde 353f4354fd merging previous commits 12 years ago
Bob Monteverde 6db030bdb4 Some minor tweaks for the scatter voronoi 12 years ago
Bob Monteverde 0c06df9dae Fix for negative bullet chart marker 12 years ago
Bob Monteverde 769852e072 Enabling negative bullet chart values 12 years ago
Bob Monteverde 51d9d091c0 Implemented forceX to bulletChart 12 years ago
Bob Monteverde eabda14d91 Fixed historical bar position, bars are now centered over ticks 12 years ago
Bob Monteverde dbc0da6a66 Minor tweak to right axis label to fix its position 12 years ago
Andreas Lyngstad dc8c8527fb Adding legend to pieChart sub-compnents 12 years ago
Leonard Kappe 46810781e9 Fixed rotateLabels option for multiBarCharts
Replaced 'text-transform' with correct attribute 'text-anchor' to set
rotation center of labels.
12 years ago
Clemens 79f17c202f added option to position labels in pie chart in a sunbeam manner
(especially useful for many different values in chart)
12 years ago
Bob Monteverde c65c16b9c8 Issue #329 Line plus bar chart x axis no longer disappears when line is disabled 12 years ago
Tyler Wolf f6a4166117 removed logging 12 years ago
Tyler Wolf f374c9a527 fixed NVD-325 and UI-34 12 years ago
Tyler Wolf 3128bedde9 fixed issue #324 12 years ago
Ricardo eedb708570 Undoing 'subdivide ticks' that was causing problem and was making the user interface less friendly after resize 12 years ago
Ricardo 346c4bdbcb Fixing problem on cumulative line when doing a fresh load (grid doesn't render) 12 years ago
Ricardo 34a8106b86 merge 12 years ago
Bob Monteverde 8b5c49281e Issue #323 now acount for series that are temporarily disabld due to calcualtions being impossible to make 12 years ago
Bob Monteverde d74a3102cf Issue #322: Disable cumulative series when they go bellow 95% to prevent scale distortion and calculation errors when a series loses 100% or more 12 years ago
Ricardo be07849c01 X axis space rework 12 years ago
Bob Monteverde c09abc9cfb Merging from repo 12 years ago
Bob Monteverde 8a846ef030 Temporarily remopving all animations from stacked are chart 12 years ago
Tyler Wolf ff6309d37b discreteBarChart labels shifted down 12 years ago
Tyler Wolf 5a08ef2638 fixed Issue #321 12 years ago
Bob Monteverde 5bbba2fcf0 Issue #314 line plus bar with a single data point now shows the x tick in the center 12 years ago
Bob Monteverde 976d731a64 Issue #315 fixed issue with background click handler not resizing 12 years ago
Tyler Wolf 42d1f6fa63 placed date tooltips on scatterPlusLineChart 12 years ago
Tyler Wolf 7f0b829b01 further fixed x-axis crowding issue 12 years ago
Tyler Wolf b1a98db4ec fixed cumulativeLineChart x-axis overcrowding 12 years ago
Bob Monteverde aa9d36e1f7 Issue #319: reduced the bar width of the discrete bar by 10% 12 years ago
Bob Monteverde c0b27c4c71 Issue #315: dragging index line now works correctly afetr resizing chart 12 years ago
Tyler Wolf 49505ba976 UI-31 12 years ago
Dingo 36a242846a tooltip fixes applied 12 years ago
Tyler Wolf a056949ca4 updated tooltip placement variable names 12 years ago
Tyler Wolf 7aff7d5077 fixed tooltip repositioning UI-24 12 years ago
Bob Monteverde dacbf5303f Issue #297: get showMaxMin to work on ordinal x axis scale 12 years ago
Bob Monteverde 739e385fce Issue #310 on drage keep ew-resize cursor 12 years ago
Bob Monteverde 4ad3c2e6f3 Fixed issue #309 12 years ago
Bob Monteverde 7b6f3ca87f Issue #307: hover value and line are not created UNTIL actual hover, instead of created and hidden 12 years ago
Tyler Wolf 53687e1454 reverted the lineChart right margin change. My mistake 12 years ago
Tyler Wolf 68e8121721 fixed FF getBBox() issue (UI-19), extended line chart right margin +3px 12 years ago
Tyler Wolf 0de0ea9ab6 fixed issue #UI-22 12 years ago
Tyler Wolf ede1088797 issue #296 -set or get bar class with .rectClass() 12 years ago
Tyler Wolf ff988a53b7 Issue #299 fixed x axis label 12 years ago
Tyler Wolf b238834fd5 Issue #299 -fixed 12 years ago
Bob Monteverde 5eeb566626 Mke sure the sparklinePlus hover line does not show on initial render 12 years ago
Bob Monteverde 2cb1240441 Issue #305 disable tooltips until interactive layer updates to new position 12 years ago
Bob Monteverde b7f89ec7a7 Merge pull request #294 from markedwards/master
New linePlusBarWithFocusChart model and example.  Will add to makefile in a little while
12 years ago
Bob Monteverde 8fae9ec2bf Changing default font to Arial for xonsistgent sizing in different browsers 12 years ago
Bob Monteverde e630446033 Issue #302 made height2 accessible in the linePlusFocusChart 12 years ago
Bob Monteverde 76bb81667d Merge branch 'master' of github.com:novus/nvd3 12 years ago
Bob Monteverde 3e5d1e4807 Issue #283 voronoi based point interaction now works with less than 3 points 12 years ago
Ricardo cdc6565da4 Changing the sparkline tooltip color to avoid confusion with the cumulative chart line 12 years ago
Ricardo abf23e3727 Duplicating the number of ticks on the x axis for the bullet chart 12 years ago
Ricardo b9d8000f0e Fix for #301: now it will display point only for the first min value, the last max value, and the current value. 12 years ago
Ricardo 819f71c469 Getting the bullet chart noData functionality working 12 years ago
Tyler Wolf ac873d6e4b #298 zero values are now 1px in width on horizontalbar 12 years ago
Mark Edwards f53e2db9b7 New linePlusBarWithFocusChart model and example 12 years ago
Bob Monteverde 9661ffb4d3 Issue #281 minor tweak to current value dy and margin.bottom 12 years ago
Bob Monteverde 3b220f6252 Issue #281 minor tweak tto current value dy 12 years ago
Bob Monteverde eb394b50a8 Issue #281 attempting to fix random isue with sparklines value not showing in the right place 12 years ago
Bob Monteverde 1e3e05b286 Issue #292 display bar's with 0 hight 12 years ago
Bob Monteverde 48ab64d329 Minor tweak to sparklinePlus font size 12 years ago
Bob Monteverde a5d6c9b751 Issue #284 some tweaks to new sparkline showValue 12 years ago
Bob Monteverde 9ee0c62c0f Increased sparklinePlus margin right to account for space needed to show current value 12 years ago
Bob Monteverde d1edef5457 Issue #284 show current value to the right of the sparkline 12 years ago
Bob Monteverde 857b9c71ac Issue #285 bars >= 0 with 1 px height will now show up above the y = 0 line on discreteBar and multiBar 12 years ago
Bob Monteverde 5ca76561c4 Issue #290 added tick 2 pixels to the default tick padding 12 years ago
Bob Monteverde 424923641f Merge branch 'master' of github.com:novus/nvd3 12 years ago
Bob Monteverde cf9bb41be6 Issue #281 bars on multibar and discretebar now are 1 px high even if they are 0 12 years ago
Ricardo bf3368ef05 Merge branch 'master' of github.com:novus/nvd3 12 years ago
Ricardo 6753cfb67f Adding back the hand cursor to the legends 12 years ago