Bumping to version 1.1.7b, due to removal of with-3d-shadow from tooltips.

Updating all example charts to include with-3d-shadow.
master
Robin Hu 11 years ago
parent c2b32f2909
commit 6ff087584d

@ -12,7 +12,7 @@ text {
}
</style>
<body class='with-transitions'>
<body class='with-3d-shadow with-transitions'>
<svg id="test1"></svg>

@ -28,7 +28,7 @@ text {
</style>
<body>
<div id="chart1" class='with-transitions'>
<div id="chart1" class='with-3d-shadow with-transitions'>
<svg> </svg>
</div>

@ -28,7 +28,7 @@ text {
</style>
<body>
<div id="chart1">
<div id="chart1" class='with-3d-shadow with-transitions'>
<svg> </svg>
</div>

@ -32,7 +32,7 @@ svg {
</style>
<body>
<div id="chart1">
<div id="chart1" class='with-3d-shadow with-transitions'>
<svg style="height: 500px;"></svg>
</div>

@ -32,7 +32,7 @@ svg {
</style>
<body>
<div id="chart">
<div id="chart" class='with-3d-shadow with-transitions'>
<svg style="height: 500px;"></svg>
</div>

@ -28,7 +28,7 @@ text {
</style>
<body>
<div id="chart1">
<div id="chart1" class='with-3d-shadow with-transitions'>
<svg></svg>
</div>

@ -31,7 +31,7 @@ text {
</style>
<body>
<div id="chart1">
<div id="chart1" class='with-3d-shadow with-transitions'>
<svg></svg>
</div>

@ -27,9 +27,9 @@ text {
}
</style>
<body>
<body class='with-3d-shadow with-transitions'>
<div id="chart1">
<div id="chart1" >
<svg> </svg>
</div>

@ -16,7 +16,7 @@ text {
border: 2px;
}
</style>
<body>
<body class='with-3d-shadow with-transitions'>
<h2>Test1</h2>
<svg id="test1" class="mypiechart"></svg>

@ -41,7 +41,7 @@ div {
<body>
<div id="offsetDiv">
<div id="test1" class="with-transitions chartWrap">
<div id="test1" class='with-3d-shadow with-transitions'>
<svg></svg>
</div>
</div>

@ -38,7 +38,7 @@ div {
</style>
<body>
<body class='with-3d-shadow with-transitions'>
<div id="offsetDiv">
<div id="test1" class="chartWrap">

@ -15,7 +15,7 @@ h2, p {
}
</style>
<body>
<body class='with-3d-shadow with-transitions'>
<h2>SparklinePlus:</h2>
<p><svg id="chart1" class="sparkline"></svg></p>

@ -18,7 +18,7 @@ text {
}
</style>
<body>
<body class='with-3d-shadow with-transitions'>
<div>
<svg id="chart1"></svg>

@ -3,7 +3,7 @@
var nv = window.nv || {};
nv.version = '1.1.6b';
nv.version = '1.1.7b';
nv.dev = true //set false when in production
window.nv = nv;
@ -456,7 +456,7 @@ window.nv.tooltip.* also has various helper methods.
if (container.node() === null) {
//Create new tooltip div if it doesn't exist on DOM.
container = body.append("div")
.attr("class", "nvtooltip with-3d-shadow " + (classes? classes: "xy-tooltip"))
.attr("class", "nvtooltip " + (classes? classes: "xy-tooltip"))
.attr("id",id)
;
}
@ -609,7 +609,7 @@ window.nv.tooltip.* also has various helper methods.
//Create new tooltip div if it doesn't exist on DOM.
var container = document.createElement('div');
container.className = 'nvtooltip with-3d-shadow ' + (classes ? classes : 'xy-tooltip');
container.className = 'nvtooltip ' + (classes ? classes : 'xy-tooltip');
var body = parentContainer;
if ( !parentContainer || parentContainer.tagName.match(/g|svg/i)) {

12
nv.d3.min.js vendored

File diff suppressed because one or more lines are too long

@ -2,7 +2,7 @@
var nv = window.nv || {};
nv.version = '1.1.6b';
nv.version = '1.1.7b';
nv.dev = true //set false when in production
window.nv = nv;

Loading…
Cancel
Save