Spaces:
Running
Running
File size: 1,550 Bytes
c3a7fd7 19a4240 c3a7fd7 19a4240 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
$(document).ready(function() {
const messagesDiv = $('#messages');
const userInput = $('#userInput');
const sendBtn = $('#sendBtn');
const chartCanvas = $('#chart');
sendBtn.on('click', function() {
const userMessage = userInput.val();
if (userMessage) {
messagesDiv.append(`<div><strong>You:</strong> ${userMessage}</div>`);
userInput.val('');
generateChart(userMessage);
}
});
function generateChart(query) {
// Simulate AI response and chart generation
messagesDiv.append(`<div><strong>AI:</strong> Generating chart for "${query}"...</div>`);
// Simulated data for the chart
const labels = ['January', 'February', 'March', 'April', 'May', 'June', 'July'];
const data = [65, 59, 80, 81, 56, 55, 40];
// Create the chart
const ctx = chartCanvas[0].getContext('2d');
const chart = new Chart(ctx, {
type: 'line',
data: {
labels: labels,
datasets: [{
label: 'Stock Trend',
data: data,
borderColor: 'rgba(75, 192, 192, 1)',
borderWidth: 2,
fill: false
}]
},
options: {
responsive: true,
scales: {
y: {
beginAtZero: true
}
}
}
});
chartCanvas.show();
}
});
|