Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TanStack/react-charts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.0-beta.53
Choose a base ref
...
head repository: TanStack/react-charts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: beta
Choose a head ref
  • 5 commits
  • 7 files changed
  • 3 contributors

Commits on Jan 26, 2023

  1. Copy the full SHA
    de262a7 View commit details

Commits on Jun 23, 2023

  1. Copy the full SHA
    7f329e7 View commit details

Commits on Oct 11, 2023

  1. Copy the full SHA
    e4b1c9c View commit details

Commits on Nov 2, 2023

  1. feat: Implement showDatumInTooltip in TooltipOptions to allow hiding …

    …certain datums in regular TooltipRenderer. (#360)
    
    * Implement showDatumInTooltip in TooltipOptions to allow hiding certain datums in regular TooltipRenderer.
    
    * Run format over code.
    Zandor300 authored Nov 2, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    582bc33 View commit details

Commits on Mar 10, 2025

  1. Indicate the repo is no longer maintained (#380)

    bjorn1213 authored Mar 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fc02dbd View commit details
Showing with 60 additions and 35 deletions.
  1. +6 −0 README.md
  2. +9 −8 src/components/Chart.tsx
  3. +1 −0 src/components/Tooltip.tsx
  4. +3 −1 src/components/TooltipRenderer.tsx
  5. +16 −8 src/hooks/useSpring.ts
  6. +2 −1 src/types.ts
  7. +23 −17 src/utils/buildAxis.linear.ts
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
![React Charts Header](https://github.com/TanStack/react-charts/raw/main/media/repo-dark.png)


# ⚠️ No Longer Maintained ⚠️
This project is no longer actively maintained. No further updates, bug fixes, or support will be provided.

----

Simple, immersive and interactive charts for React

<a href="https://twitter.com/intent/tweet?button_hashtag=TanStack" target="\_parent">
17 changes: 9 additions & 8 deletions src/components/Chart.tsx
Original file line number Diff line number Diff line change
@@ -786,6 +786,15 @@ function sortDatumsBySecondaryPx<TDatum>(
datums: Datum<TDatum>[],
secondaryAxes: Axis<TDatum>[]
) {
if (secondaryAxes.every(d => d.stacked)) {
const differingInverts =
secondaryAxes.some(d => d.invert) && secondaryAxes.some(d => !d.invert)

if (!differingInverts) {
return datums
}
}

return [...datums].sort((a, b) => {
const aAxis = secondaryAxes.find(d => d.id === a.secondaryAxisId)
const bAxis = secondaryAxes.find(d => d.id === b.secondaryAxisId)
@@ -796,14 +805,6 @@ function sortDatumsBySecondaryPx<TDatum>(
const bPx =
bAxis?.scale(bAxis.stacked ? b.stackData?.[1] : b.secondaryValue) ?? NaN

if ((aAxis || bAxis)?.stacked) {
return a.seriesIndex > b.seriesIndex
? 1
: a.seriesIndex < b.seriesIndex
? -1
: 0
}

return aPx > bPx ? 1 : aPx < bPx ? -1 : 0
})
}
1 change: 1 addition & 0 deletions src/components/Tooltip.tsx
Original file line number Diff line number Diff line change
@@ -41,6 +41,7 @@ export function defaultTooltip<TDatum>(
arrowPadding: options.arrowPadding ?? 7,
// anchor: options.anchor ?? 'closest',
render: options.render ?? TooltipRenderer,
showDatumInTooltip: options.showDatumInTooltip ?? (() => true),
}
}

4 changes: 3 additions & 1 deletion src/components/TooltipRenderer.tsx
Original file line number Diff line number Diff line change
@@ -54,7 +54,9 @@ function TooltipRenderer<TDatum>(props: TooltipRendererProps<TDatum>) {

const { tooltip, dark } = props.getOptions()

const groupDatums = props.focusedDatum?.tooltipGroup ?? []
const groupDatums = (props.focusedDatum?.tooltipGroup ?? []).filter(
datum => tooltip.showDatumInTooltip?.(datum) ?? true
)

const resolvedShowCount = showCount % 2 === 0 ? showCount : showCount + 1
const length = groupDatums.length
24 changes: 16 additions & 8 deletions src/hooks/useSpring.ts
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ export function useSpring(
config: [number, number, number],
cb: (x: number) => void,
immediate?: boolean,
debug?: boolean
_debug?: boolean
) {
const springRef = React.useRef(new Spring(value, ...config))
const getValue = useGetLatest(value)
@@ -17,16 +17,22 @@ export function useSpring(
return springRef.current.done()
})

// Immediate
const prevRef = React.useRef<any>()
const changed = prevRef.current !== value

React.useEffect(() => {
if (immediate) {
springRef.current.snap(getValue())
if (changed) {
if (immediate) {
springRef.current.snap(getValue())
startRaf()
return
}
springRef.current.setEnd(value)
startRaf()
return
}
springRef.current.setEnd(value)
startRaf()
}, [debug, getValue, immediate, startRaf, stopRaf, value])

prevRef.current = value
})

React.useEffect(() => {
return () => {
@@ -54,3 +60,5 @@ export function useRaf(callback: () => any) {
),
]
}

// Test
3 changes: 2 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -124,7 +124,8 @@ export type TooltipOptions<TDatum> = {
render?: (props: TooltipRendererProps<TDatum>) => React.ReactNode
// formatSecondary?: (d: unknown) => string | number
// formatTertiary?: (d: unknown) => string | number
invert?: boolean
invert?: boolean,
showDatumInTooltip?: (datum: Datum<TDatum>) => boolean
}

export type ResolvedTooltipOptions<TDatum> = TSTB.Object.Required<
40 changes: 23 additions & 17 deletions src/utils/buildAxis.linear.ts
Original file line number Diff line number Diff line change
@@ -647,34 +647,40 @@ function buildPrimaryBandScale<TDatum>(
range: [number, number]
) {
// Find the two closest points along axis
// Do not allow the band to be smaller than single pixel of the output range

let impliedBandWidth: number = Math.max(...range)
const bandRange: number = Math.max(...range)

for (let i = 0; i < series.length; i++) {
const serie = series[i]
;(() => {
for (let i = 0; i < series.length; i++) {
const serie = series[i]

for (let j = 0; j < serie.datums.length; j++) {
const d1 = serie.datums[j]
const one = scale(d1.primaryValue ?? NaN)
for (let j = 0; j < serie.datums.length; j++) {
const d1 = serie.datums[j]
const one = scale(d1.primaryValue ?? NaN)

for (let k = 0; k < serie.datums.length; k++) {
const d2 = serie.datums[k]
const two = scale(d2.primaryValue ?? NaN)
for (let k = 0; k < serie.datums.length; k++) {
const d2 = serie.datums[k]
const two = scale(d2.primaryValue ?? NaN)

if (one === two) {
continue
}
if (one === two) {
continue
}

const diff = Math.abs(Math.max(one, two) - Math.min(one, two))

const diff = Math.abs(Math.max(one, two) - Math.min(one, two))
if (diff < impliedBandWidth) {
impliedBandWidth = Math.max(diff, bandRange)

if (diff < impliedBandWidth) {
impliedBandWidth = diff
if (impliedBandWidth === bandRange) {
return
}
}
}
}
}
}

const bandRange = Math.max(...range)
})()

const bandDomain = d3Range(bandRange / impliedBandWidth)