@@ -258,12 +258,12 @@ dc.coordinateGridMixin = function (_chart) {
258
258
* **mandatory**
259
259
*
260
260
* Get or set the x scale. The x scale can be any d3
261
- * {@link https://github.com/mbostock /d3/wiki/ Quantitative-Scales quantitive scale} or
262
- * {@link https://github.com/mbostock /d3/wiki/ Ordinal-Scales ordinal scale}.
261
+ * {@link https://github.com/d3 /d3-3.x-api-reference/blob/master/ Quantitative-Scales.md quantitive scale} or
262
+ * {@link https://github.com/d3 /d3-3.x-api-reference/blob/master/ Ordinal-Scales.md ordinal scale}.
263
263
* @method x
264
264
* @memberof dc.coordinateGridMixin
265
265
* @instance
266
- * @see {@link http ://github.com/mbostock /d3/wiki/ Scales d3.scale }
266
+ * @see {@link https ://github.com/d3 /d3-3.x-api-reference/blob/master/ Scales.md d3.scale }
267
267
* @example
268
268
* // set x to a linear scale
269
269
* chart.x(d3.scale.linear().domain([-2500, 2500]))
@@ -292,7 +292,7 @@ dc.coordinateGridMixin = function (_chart) {
292
292
* number of dots for a line chart. This function is expected to return a Javascript array of all
293
293
* data points on x axis, or the number of points on the axis. [d3 time range functions
294
294
* d3.time.days, d3.time.months, and
295
- * d3.time.years](https://github.com/mbostock /d3/wiki/ Time-Intervals#aliases) are all valid xUnits
295
+ * d3.time.years](https://github.com/d3 /d3-3.x-api-reference/blob/master/ Time-Intervals.md #aliases) are all valid xUnits
296
296
* function. dc.js also provides a few units function, see the {@link dc.units Units Namespace} for
297
297
* a list of built-in units functions.
298
298
* @method xUnits
@@ -329,15 +329,15 @@ dc.coordinateGridMixin = function (_chart) {
329
329
330
330
/**
331
331
* Set or get the x axis used by a particular coordinate grid chart instance. This function is most
332
- * useful when x axis customization is required. The x axis in dc.js is an instance of a [d3
333
- * axis object]( https://github.com/mbostock /d3/wiki/ SVG-Axes#wiki- axis); therefore it supports any
334
- * valid d3 axis manipulation.
332
+ * useful when x axis customization is required. The x axis in dc.js is an instance of a
333
+ * { @link https://github.com/d3 /d3-3.x-api-reference/blob/master/ SVG-Axes.md# axis d3 axis object};
334
+ * therefore it supports any valid d3 axis manipulation.
335
335
*
336
336
* **Caution**: The x axis is usually generated internally by dc; resetting it may cause unexpected results.
337
337
* @method xAxis
338
338
* @memberof dc.coordinateGridMixin
339
339
* @instance
340
- * @see {@link http ://github.com/mbostock /d3/wiki/ SVG-Axes d3.svg.axis }
340
+ * @see {@link https ://github.com/d3 /d3-3.x-api-reference/blob/master/ SVG-Axes.md#axis d3.svg.axis }
341
341
* @example
342
342
* // customize x axis tick format
343
343
* chart.xAxis().tickFormat(function(v) {return v + '%';});
@@ -759,7 +759,7 @@ dc.coordinateGridMixin = function (_chart) {
759
759
* @method y
760
760
* @memberof dc.coordinateGridMixin
761
761
* @instance
762
- * @see {@link http ://github.com/mbostock /d3/wiki/ Scales d3.scale }
762
+ * @see {@link https ://github.com/d3 /d3-3.x-api-reference/blob/master/ Scales.md d3.scale }
763
763
* @param {d3.scale } [yScale]
764
764
* @returns {d3.scale|dc.coordinateGridMixin }
765
765
*/
@@ -775,14 +775,14 @@ dc.coordinateGridMixin = function (_chart) {
775
775
/**
776
776
* Set or get the y axis used by the coordinate grid chart instance. This function is most useful
777
777
* when y axis customization is required. The y axis in dc.js is simply an instance of a [d3 axis
778
- * object](https://github.com/mbostock /d3/wiki/ SVG-Axes#wiki-_axis ); therefore it supports any
778
+ * object](https://github.com/d3 /d3-3.x-api-reference/blob/master/ SVG-Axes.md#axis ); therefore it supports any
779
779
* valid d3 axis manipulation.
780
780
*
781
781
* **Caution**: The y axis is usually generated internally by dc; resetting it may cause unexpected results.
782
782
* @method yAxis
783
783
* @memberof dc.coordinateGridMixin
784
784
* @instance
785
- * @see {@link http ://github.com/mbostock /d3/wiki/ SVG-Axes d3.svg.axis }
785
+ * @see {@link https ://github.com/d3 /d3-3.x-api-reference/blob/master/ SVG-Axes.md#axis d3.svg.axis }
786
786
* @example
787
787
* // customize y axis tick format
788
788
* chart.yAxis().tickFormat(function(v) {return v + '%';});
0 commit comments