Title: mwebdev's Replies | WordPress.org

---

# mwebdev

  [  ](https://wordpress.org/support/users/mwebdev/)

 *   [Profile](https://wordpress.org/support/users/mwebdev/)
 *   [Topics Started](https://wordpress.org/support/users/mwebdev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mwebdev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mwebdev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mwebdev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mwebdev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mwebdev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Visualizer – Tables & Charts Manager with Built-in AI Generator] there any way to change the csv file with a dropdown list and refresh the chart?](https://wordpress.org/support/topic/there-any-way-to-change-the-csv-file-with-a-dropdown-list-and-refresh-the-chart/)
 *  [mwebdev](https://wordpress.org/support/users/mwebdev/)
 * (@mwebdev)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/there-any-way-to-change-the-csv-file-with-a-dropdown-list-and-refresh-the-chart/#post-6316275)
 * my plan so far is to create some sort of custom data filter plugin: similar to
   something like this…
 *     ```
       add_filter( 'mycustom_data_filter', 'myplugin_filter_chart_data', 10, 3 );
       function myplugin_filter_chart_data( $data, $chart_id, $type ) {
           $file = fopen($pathname, 'r');
           $headers = fgetcsv($file, 0, '^', '¬');
   
       while ($data= fgetcsv($file, 0, '^', '¬')) {
           $data= array_combine($headers, $data);
       }
           return $data;
       }
       ```
   
 * but who the hell knows if it will work…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Visualizer – Tables & Charts Manager with Built-in AI Generator] there any way to change the csv file with a dropdown list and refresh the chart?](https://wordpress.org/support/topic/there-any-way-to-change-the-csv-file-with-a-dropdown-list-and-refresh-the-chart/)
 *  [mwebdev](https://wordpress.org/support/users/mwebdev/)
 * (@mwebdev)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/there-any-way-to-change-the-csv-file-with-a-dropdown-list-and-refresh-the-chart/#post-6316274)
 * Im trying to do this as well
    [@compixvd](https://wordpress.org/support/users/compixvd/)
   have you found a solution?

Viewing 2 replies - 1 through 2 (of 2 total)