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> </style>
<body class='with-transitions'> <body class='with-3d-shadow with-transitions'>
<svg id="test1"></svg> <svg id="test1"></svg>

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save