diff --git a/README.md b/README.md
index 1ec364cd..9d8f2e29 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ Using Force UI as a dependency in package.json -
```json
"dependencies": {
- "@bsf/force-ui": "git+https://github.com/brainstormforce/force-ui#1.6.0"
+ "@bsf/force-ui": "git+https://github.com/brainstormforce/force-ui#1.6.1"
}
```
@@ -28,7 +28,7 @@ npm install
Or you can directly run the following command to install the package -
```bash
-npm i -S @bsf/force-ui@git+https://github.com/brainstormforce/force-ui.git#1.6.0
+npm i -S @bsf/force-ui@git+https://github.com/brainstormforce/force-ui.git#1.6.1
```
diff --git a/changelog.txt b/changelog.txt
index 744e805f..c0e0ca17 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,7 @@
+Version 1.6.1 - 11th April, 2025
+- Improvement - Added a new prop to the LineChart component to enable Biaxial Line chart functionality, along with various UI enhancements for improved user experience.
+- Fix - Corrected the positioning of days in the DatePicker component to ensure accurate display and improved user experience.
+
Version 1.6.0 - 8th April, 2025
- New - Introduced a versatile Text component that supports multiple HTML elements and customizable styles for enhanced typography flexibility.
- Improvement - Display xAxis data on the tooltip when hovering.
diff --git a/package-lock.json b/package-lock.json
index bfc0a1f9..ff173138 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@bsf/force-ui",
- "version": "1.6.0",
+ "version": "1.6.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@bsf/force-ui",
- "version": "1.6.0",
+ "version": "1.6.1",
"license": "ISC",
"dependencies": {
"@emotion/is-prop-valid": "^1.3.0",
diff --git a/package.json b/package.json
index 48870db4..642a6425 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@bsf/force-ui",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Library of components for the BSF project",
"main": "./dist/force-ui.cjs.js",
"module": "./dist/force-ui.es.js",
diff --git a/src/components/area-chart/area-chart.tsx b/src/components/area-chart/area-chart.tsx
index fe9f1c13..a4b24b98 100644
--- a/src/components/area-chart/area-chart.tsx
+++ b/src/components/area-chart/area-chart.tsx
@@ -188,6 +188,7 @@ const AreaChart = ( {
fill: xAxisFontColor,
} }
hide={ ! showXAxis }
+ interval="preserveStartEnd"
/>