@secondstaxorg/sscomp 1.9.27 → 1.9.28

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/dist/index.js CHANGED
@@ -32632,14 +32632,14 @@ const _jsxFileName$3 = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
32632
32632
 
32633
32633
 
32634
32634
  const BarChart = (props) => {
32635
- const {labels,datasets} = props;
32635
+ const {labels,datasets,showGridMarkings,showLabels} = props;
32636
32636
 
32637
32637
  let options = {
32638
32638
  responsive: true,
32639
32639
  maintainAspectRatio: false,
32640
32640
  plugins: {
32641
32641
  legend: {
32642
- display: true,
32642
+ display: showLabels,
32643
32643
  position: 'bottom',
32644
32644
  labels: {
32645
32645
  padding: 40,
@@ -32665,7 +32665,7 @@ const BarChart = (props) => {
32665
32665
  },
32666
32666
  scales: {
32667
32667
  y: {
32668
- display: true,
32668
+ display: showGridMarkings,
32669
32669
  grid: {
32670
32670
  color: '#E5E6EB',
32671
32671
  borderDash: [5, 5],