@dhiraj0720/report1chart 2.7.4 → 2.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -72,7 +72,7 @@ const SvgBarLineChartCompact3A = ({ data }) => {
|
|
|
72
72
|
fill="white"
|
|
73
73
|
fontWeight="700"
|
|
74
74
|
>
|
|
75
|
-
{formatNumber(val2024)}
|
|
75
|
+
{formatNumber(val2024)}
|
|
76
76
|
</SvgText>
|
|
77
77
|
)}
|
|
78
78
|
|
|
@@ -84,10 +84,11 @@ const SvgBarLineChartCompact3A = ({ data }) => {
|
|
|
84
84
|
y={y(val2025) + h2025 / 2 + 5}
|
|
85
85
|
fontSize="10"
|
|
86
86
|
textAnchor="middle"
|
|
87
|
-
fill="
|
|
87
|
+
fill="gray"
|
|
88
|
+
transform="rotate(-90 40 160)"
|
|
88
89
|
fontWeight="700"
|
|
89
90
|
>
|
|
90
|
-
{formatNumber(val2025)}
|
|
91
|
+
{formatNumber(val2025)}
|
|
91
92
|
</SvgText>
|
|
92
93
|
)}
|
|
93
94
|
|
|
@@ -104,8 +105,8 @@ const SvgBarLineChartCompact3A = ({ data }) => {
|
|
|
104
105
|
/>
|
|
105
106
|
)}
|
|
106
107
|
<Circle cx={centerX} cy={y(budget)} r={6} fill="#8AB6E8" stroke="#fff" strokeWidth={2} />
|
|
107
|
-
<SvgText
|
|
108
|
-
{formatNumber(budget)}
|
|
108
|
+
<SvgText x={centerX} y={y(budget) - 12} fontSize="11" textAnchor="middle" fill="#333" fontWeight="700">
|
|
109
|
+
{formatNumber(budget)}
|
|
109
110
|
</SvgText>
|
|
110
111
|
|
|
111
112
|
{/* X Label */}
|