Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
975 B
4
Indexable
Never
      <VictoryChart polar startAngle={90} endAngle={450}>
        <VictoryPolarAxis
          style={{
            axis: { strokeWidth: 0 },
            grid: { stroke: '#5F9EA0', strokeOpacity: 0.3 },
            tickLabels: { fontSize: 12, padding: 20, fill: '#00008B', angle: 360 },
          }}
          
        />
        <VictoryPolarAxis
          dependentAxis
          tickValues={['1', '2', '3', '4', '5']}
          style={{
            grid: { stroke: 'black', strokeWidth: 1, strokeDasharray: '9', strokeOpacity: 0.55 },
            axis: { strokeOpacity: 0 },
            tickLabels: { fontSize: 11, fill: '#00008B', angle: 0, fillOpacity: 0.55 },
          }}
        />
   <VictoryArea
  data={[
    {"x": "Verimlilik", "y": 2.5},
    {"x": "Likidite", "y": 2.25},
    {"x": "Kaldıraç", "y": 3.5},
    {"x": "Karlılık", "y": 4.15},
    {"x": "Büyüme", "y": 4}
  ]}
  style={{
    data: { fill: 'rgba(0, 0, 139, 0.7)' }, 
  }}
/>
      </VictoryChart>