Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Phinetwork committed Dec 11, 2024
1 parent 93e2bb7 commit 988c3b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ const Dashboard = () => {
labels: liveChartData.labels,
datasets: [
{
label: "Live Data",
label: "Neural Signal",
data: liveChartData.data,
borderColor: "rgba(255, 99, 132, 1)",
backgroundColor: "rgba(255, 99, 132, 0.2)",
Expand Down Expand Up @@ -353,7 +353,7 @@ const Dashboard = () => {
beginAtZero: true,
title: {
display: true,
text: "Value",
text: "Processing Intensity",
},
},
},
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/components/LiveHeatmap.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ const getColor = (value) => {
const LiveHeatmap = () => {
return (
<div className="heatmap-container">
<h2>Live Heatmap</h2>
<h2>Dynamic Neural Network</h2>
<ResponsiveContainer width="100%" height={400}>
<ScatterChart>
<CartesianGrid />
<XAxis type="number" dataKey="x" name="Longitude" />
<YAxis type="number" dataKey="y" name="Latitude" />
<ZAxis type="number" dataKey="z" range={[0, 100]} name="Intensity" />
<XAxis type="number" dataKey="x" name="Decision Pathway" />
<YAxis type="number" dataKey="y" name="Computational Depth" />
<ZAxis type="number" dataKey="z" range={[0, 100]} name="Node Relevance Index" />
<Tooltip cursor={{ strokeDasharray: "3 3" }} />
<Scatter name="Heat Points" data={data}>
{data.map((entry, index) => (
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/LiveTrendVisualizer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const LiveTrendVisualizer = () => {

return (
<div style={{ marginTop: "20px" }}>
<h2>Live Trend Visualizer</h2>
<h2>AI Insight Tracker</h2>
<VictoryChart theme={VictoryTheme.material}>
<VictoryLine
data={trendData}
Expand Down

0 comments on commit 988c3b2

Please sign in to comment.