Salary Chart Examples

This page demonstrates different types of salary visualizations using the SalaryChart component.

How to Use the SalaryChart Component

Basic Usage

Import the component and add it to your page:

import SalaryChart from '../components/visualization/SalaryChart.astro'

<SalaryChart 
  id="my-chart" 
  title="My Chart Title" 
  type="bar"
  height={350}
/>

Initialize with Data

Add a script to initialize the chart with data:

<script>
  document.addEventListener('DOMContentLoaded', () => {
    const data = [
      { label: 'Category 1', value: 100 },
      { label: 'Category 2', value: 200 },
      { label: 'Category 3', value: 150 }
    ];
    
    window.initializeChart('chart-my-chart', data, {
      xAxisLabel: 'Categories',
      yAxisLabel: 'Values',
      showValues: true
    });
  });
</script>

Available Chart Types

  • Bar Chart - type="bar"
  • Line Chart - type="line"
  • Pie Chart - type="pie"
  • Radar Chart - type="radar"

Configuration Options

The chart can be customized with these options:

// Chart options
const options = {
  margin: { top: 30, right: 30, bottom: 60, left: 60 },
  colors: ['#2563eb', '#10b981', '#f59e0b', '#ef4444'],
  animate: true,
  showLegend: true,
  showTooltip: true,
  showValues: true,  // For bar charts
  showLabels: true,  // For pie charts
  showPercentages: true,  // For pie charts
  innerRadius: 70,  // For donut charts
  xAxisLabel: 'X Axis',
  yAxisLabel: 'Y Axis',
  valueFormat: (d) => '$' + d.toLocaleString()
};

Live Example

Here's a simple bar chart example:

Example Chart

A simple bar chart example

Loading chart...

Salary Comparison by Role

Average annual salaries for different roles in the technology sector

Loading chart...

Salary Growth Over Time

Average salary growth for software engineers (2018-2023)

Loading chart...

Total Compensation Breakdown

Typical compensation package breakdown for senior roles

Loading chart...

Industry Salary Comparison

Salary comparison across different industries for similar roles

Loading chart...

Salary Trends by Experience Level

This chart shows how salaries increase with experience across different roles.

Loading chart...